Andriod基础-帧布局(FrameLayout)

Andriod基础-帧布局(FrameLayout),第1张

概述帧布局的布局属性1.android:layout_gravity="center"相对于父类样本的位置中间 2.android:foregroud= "@mipmap/ic_launcher"相对于最上面一帧的数据3.android:foregroundGravity="center"最上面一帧数据的位置 4.android:gravity="top|left"内部填充物的位置信息 

帧布局的布局属性

1. androID:layout_gravity="center" 相对于父类样本的位置中间 

2.androID:foregroud = "@mipmap/ic_launcher" 相对于最上面一帧的数据

3.androID:foregroundGravity="center" 最上面一帧数据的位置 

4.androID:gravity="top|left" 内部填充物的位置信息 

.xml的编写,使用center做为属性的中间

<?xml version="1.0" enCoding="utf-8"?><FrameLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:app="http://schemas.androID.com/apk/res-auto"    xmlns:tools="http://schemas.androID.com/tools"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    tools:context=".FrameActivity"    androID:foreground="@mipmap/ic_launcher"    androID:foregroundGravity="center">    <TextVIEw        androID:layout_wIDth="350dp"        androID:layout_height="350dp"        androID:background="#ff0000"        androID:layout_gravity="center"/>    <TextVIEw        androID:layout_wIDth="300dp"        androID:layout_height="300dp"        androID:background="#00ff00"        androID:layout_gravity="center"/>    <TextVIEw        androID:layout_wIDth="250dp"        androID:layout_height="250dp"        androID:background="#00ffff"        androID:layout_gravity="center"/>    <TextVIEw        androID:layout_wIDth="200dp"        androID:layout_height="200dp"        androID:background="#ff00ff"        androID:layout_gravity="center"/>    <TextVIEw        androID:layout_wIDth="150dp"        androID:layout_height="150dp"        androID:background="#ffff00"        androID:layout_gravity="center"        androID:text="黄色文本"        androID:gravity="top|left"/></FrameLayout>

 

总结

以上是内存溢出为你收集整理的Andriod基础-帧布局(FrameLayout)全部内容,希望文章能够帮你解决Andriod基础-帧布局(FrameLayout)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1028352.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存