Android 实例代码带你掌握FrameLayout

 更新时间:2022年03月30日 17:43:37   作者:小皮猪  
FrameLayout是Android开发中非常常见的布局组件,并且它不单单是一个帧布局组件,可以用它实现多种功能,感兴趣的朋友一起来看看吧

概述

       FrameLayout以层叠的方式布局组件:每次只能显示其中的一个。与扑克牌类似,当叠加在一起时只能看到最上面的那张。FrameLayout为布局在其中的组件提供了一个XML配置属性:Android:layout_gravity。通过这个属性,布局在FrameLayout中的组件可以指定自己在容器中的重心位置,例如,靠左,靠右等, 所有控件都默认显示在屏幕左上角。

FrameLayout全局定义的属性

练习一

实现下面布局

代码:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:foreground="@mipmap/ic_launcher"
    android:foregroundGravity="left">
 
    <Button
        android:layout_width="340dp"
        android:layout_height="570dp"
        android:text="按钮1"
        android:background="#A0230E"
        />
 
    <Button
        android:layout_width="250dp"
        android:layout_height="220dp"
        android:text="按钮2"
        android:background="#0A6188"
        />
 
</FrameLayout>

练习二

实现鼠标点击图片,然后图片切换的效果(4张图片自己选择)

代码:

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <ImageView
        android:id="@+id/p1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/p1"
        android:scaleType="fitCenter"
        android:visibility="gone"
        />
    <ImageView
        android:id="@+id/p2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/p2"
        android:scaleType="fitCenter"
        android:visibility="gone"
        />
    <ImageView
        android:id="@+id/p3"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/p3"
        android:scaleType="fitCenter"
        android:visibility="gone"
        />
    <ImageView
        android:id="@+id/p4"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/p4"
        android:scaleType="fitCenter"
        android:visibility="visible"
        />
 
 
</FrameLayout>

MainActivity.java

package com.example.myapplication;
 
import androidx.appcompat.app.AppCompatActivity;
 
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.Toolbar;
 
public class MainActivity extends AppCompatActivity implements View.OnClickListener{
    private ImageView p1,p2,p3,p4;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        p1=(ImageView)this.findViewById(R.id.p1);
        p1.setOnClickListener(this);
        p2=(ImageView)this.findViewById(R.id.p2);
        p2.setOnClickListener(this);
        p3=(ImageView)this.findViewById(R.id.p3);
        p3.setOnClickListener(this);
        p4=(ImageView)this.findViewById(R.id.p4);
        p4.setOnClickListener(this);
 
    }
 
    @Override
    public void onClick(View view) {
        int id= view.getId();
        switch (id){
            case R.id.p1:
                p1.setVisibility(View.GONE);
                p2.setVisibility(View.VISIBLE);
                break;
            case R.id.p2:
                p2.setVisibility(View.GONE);
                p3.setVisibility(View.VISIBLE);
                break;
            case R.id.p3:
                p3.setVisibility(View.GONE);
                p4.setVisibility(View.VISIBLE);
                break;
            case R.id.p4:
                p4.setVisibility(View.GONE);
                p1.setVisibility(View.VISIBLE);
                break;
        }
    }
}

到此这篇关于Android 实例代码带你掌握FrameLayout的文章就介绍到这了,更多相关Android FrameLayout内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Activity生命周期与启动模式图文解说

    Activity生命周期与启动模式图文解说

    这篇文章主要介绍了Activity生命周期与启动模式图文解说,内容比较详细,具有一定参考价值,需要的朋友可以了解下。
    2017-11-11
  • Android控件之ImageView用法实例分析

    Android控件之ImageView用法实例分析

    这篇文章主要介绍了Android控件之ImageView用法,以实例形式较为详细的分析了ImageView控件用于显示图片的使用方法,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-09-09
  • Android AES加密工具类分享

    Android AES加密工具类分享

    这篇文章主要介绍了Android AES加密工具类分享,本文给出了实现代码和使用例子,本文使用PKCS5Padding加密方式实现,需要的朋友可以参考下
    2014-10-10
  • OpenGL Shader实现光照发光体特效

    OpenGL Shader实现光照发光体特效

    这篇文章主要介绍了如何通过OpenGL Shader实现光照发光体特效,不同于阴影遮盖,它是利用圆形绘制向内部。感兴趣的小伙伴可以了解一下
    2022-02-02
  • autojs模仿QQ长按弹窗菜单实现示例

    autojs模仿QQ长按弹窗菜单实现示例

    这篇文章主要为大家介绍了autojs模仿QQ长按弹窗菜单实现示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-01-01
  • Android实现电影院选座效果

    Android实现电影院选座效果

    这篇文章主要为大家详细介绍了Android实现电影院选座效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-01-01
  • Android中实现iOS中的毛玻璃效果

    Android中实现iOS中的毛玻璃效果

    为了实现毛玻璃效果,我们需要一组compute kernels(.rs文件中编写),及一组用于控制renderScript相关的Javaapi(.rs文件自动生成为Java类)。 这篇文章主要介绍了Android中实现iOS中的毛玻璃效果,需要的朋友可以参考下
    2017-06-06
  • Android编程入门之HelloWorld项目目录结构分析

    Android编程入门之HelloWorld项目目录结构分析

    这篇文章主要介绍了Android编程入门之HelloWorld项目目录结构分析,较为详细的分析了Android项目的目录结构与具体作用,需要的朋友可以参考下
    2015-12-12
  • Android实现微信加号菜单模式

    Android实现微信加号菜单模式

    这篇文章主要为大家详细介绍了Android实现微信加号菜单模式,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-08-08
  • ActivityLifecycleCallbacks如何判断APP是否在前台

    ActivityLifecycleCallbacks如何判断APP是否在前台

    这篇文章主要为大家详细介绍了ActivityLifecycleCallbacks判断APP是否在前台的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-07-07

最新评论