Android布局之帧布局FrameLayout详解
更新时间:2017年10月12日 10:05:36 作者:海向_起源
这篇文章主要为大家详细介绍了Android布局之帧布局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"> <TextView android:layout_gravity="center" android:background="#687564" android:id="@+id/textView" android:layout_width="300dp" android:layout_height="300dp" android:text="第一个" /> <TextView android:layout_gravity="center" android:background="#422322" android:id="@+id/textView2" android:layout_width="200dp" android:layout_height="200dp" android:text="第二个" /> <TextView android:layout_gravity="center" android:background="#f1f1f1" android:id="@+id/textView3" android:layout_width="100dp" android:layout_height="100dp" android:text="第三个" /> <TextView android:layout_gravity="center" android:background="#f22" android:id="@+id/textView4" android:layout_width="80dp" android:layout_height="80dp" android:text="第四个" /> </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"> <ProgressBar android:layout_gravity="center" android:id="@+id/progressBar" style="?android:attr/progressBarStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:layout_gravity="center" android:id="@+id/textView5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="%20" /> </FrameLayout>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
FFmpeg Principle学习new_video_stream添加视频输出流
这篇文章主要为大家介绍了FFmpeg Principle学习new_video_stream添加视频输出流示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-10-10
Android事件分发机制(上) ViewGroup的事件分发
这篇文章主要为大家详细介绍了Android ViewGroup的事件分发机制上篇,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-01-01
Android UI设计系列之自定义DrawView组件实现数字签名效果(5)
这篇文章主要介绍了Android UI设计系列之自定义DrawView组件实现数字签名效果,具有一定的实用性和参考价值,感兴趣的小伙伴们可以参考一下2016-06-06
Android Fragment滑动组件ViewPager的实例详解
这篇文章主要介绍了Android Fragment滑动组件ViewPager的实例详解的相关资料,需要的朋友可以参考下2017-05-05
Android编程实现应用获取包名、版本号、权限等信息的方法
这篇文章主要介绍了Android编程实现应用获取包名、版本号、权限等信息的方法,涉及Android针对应用相关信息的获取操作实现技巧,需要的朋友可以参考下2018-02-02


最新评论