Android布局之帧布局FrameLayout详解
程序员文章站
2023-12-17 08:21:22
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>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Android布局之绝对布局AbsoluteLayout详解
-
Android布局之帧布局FrameLayout详解
-
Android编程布局(Layout)之AbsoluteLayout用法实例分析
-
Android编程布局控件之AbsoluteLayout用法实例分析
-
Android编程之绝对布局AbsoluteLayout和相对布局RelativeLayout实例详解
-
Android RecyclerView网格布局(支持多种分割线)详解(2)
-
Android RecyclerView线性布局详解(1)
-
Android LayoutInflater加载布局详解及实例代码
-
android 布局属性详解
-
iOS布局渲染之UIView方法的调用时机详解