欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android布局之帧布局FrameLayout详解

时间:2021-02-18 11:21:26|栏目:Android代码|点击:

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开发实例之登录界面的实现

栏    目:Android代码

下一篇:Android仿iOS实现侧滑返回功能(类似微信)

本文标题:Android布局之帧布局FrameLayout详解

本文地址:http://www.codeinn.net/misctech/65481.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有