Android——布局管理器-2
作者:互联网
目录
帧布局(FrameLayout)
最简单的一种布局,没有任何定位方式,当我们往里面添加控件的时候,会默认把我们放到这块区域的左上角,帧布局的大小由空间中最大的子控件决定,如果控件的大小一样大的话,那么同一时刻就只能看到最上面的那个组件,后续添加的控件会覆盖前一个。
1.运用
<?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=".MainActivity">
<!--可以调整这三个view的前后,会发现出现覆盖问题。-->
<!--在我们要使用什么悬浮功能之类的,就可以使用帧布局来实现。-->
<View
android:layout_width="400dp"
android:layout_height="400dp"
android:background="#1D84D6" />
<View
android:layout_width="200dp"
android:layout_height="200dp"
android:background="#F60101"/>
<View
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#8BC34A"/>
</FrameLayout>
2.效果展示
网格布局(GridLayout)
1.常用属性
2.运用
<?xml version="1.0" encoding="utf-8"?>
<GridLayout 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="wrap_content"
android:layout_height="wrap_content"
android:columnCount="4"
android:rowCount="6"
android:orientation="horizontal"
tools:context=".MainActivity">
<TextView
android:layout_columnSpan="4"
android:layout_gravity="fill"
android:background="#FBBDE7"
android:text="0"
android:textSize="50dp"/>
<Button
android:layout_columnSpan="2"
android:layout_gravity="fill"
android:backgroundTint="#95EBF6"
android:text="回退"/>
<Button
android:layout_columnSpan="2"
android:layout_gravity="fill"
android:backgroundTint="#95EBF6"
android:text="清空"/>
<Button
android:text="+"
android:backgroundTint="#95EBF6"/>
<Button
android:text="1"
android:backgroundTint="#95EBF6"/>
<Button
android:text="2"
android:backgroundTint="#95EBF6"/>
<Button
android:text="3"
android:backgroundTint="#95EBF6"/>
<Button
android:text="-"
android:backgroundTint="#95EBF6"/>
<Button
android:text="4"
android:backgroundTint="#95EBF6"/>
<Button
android:text="5"
android:backgroundTint="#95EBF6"/>
<Button
android:text="6"
android:backgroundTint="#95EBF6"/>
<Button
android:text="*"
android:backgroundTint="#95EBF6"/>
<Button
android:text="7"
android:backgroundTint="#95EBF6"/>
<Button
android:text="8"
android:backgroundTint="#95EBF6"/>
<Button
android:text="9"
android:backgroundTint="#95EBF6"/>
<Button
android:text="/"
android:backgroundTint="#95EBF6"/>
<Button
android:text="."
android:backgroundTint="#95EBF6"/>
<Button
android:text="0"
android:backgroundTint="#95EBF6"/>
<Button
android:text="="
android:backgroundTint="#95EBF6"/>
</GridLayout>
3.效果展示
标签:控件,管理器,布局,网格,添加,FrameLayout,GridLayout,Android 来源: https://blog.csdn.net/mengmengde_/article/details/118789088