<!-- LinearLayout 是允許所有的子视图在竖直或水平单一方向上摆放的视图
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
>
<!--
android:orientation 表示设置线性布局控件的摆放方向默认水平horizontal ,vertical竖直方向
android:layout_width 设置view的宽度
android:layout_height 设置view的高度
-wrap_content 表示包裹内容
-match_parent 表示填充父控件
-指定固定的值 用数字表示相应的像素 eg:android:layout_width="5dp"
android:background 设置背景
android:layout_gravity 表示设置view在其父view中的对齐方式
android:gravity -在viewgroup中设置表示viewgroup中view控件的对齐方式
-在view控件中设置则表示控件中内容与该view控件的对齐方式
android:layout_weight 表示通过比重来进行布局
-->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#aa0000"
android:gravity="right"
android:text="@string/hello_world" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_weight="1"
android:background="#00aa00"
android:text="@string/hello_world" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#0000aa"
android:text="@string/hello_world" />
</LinearLayout>
1.1LinearLayout
最新推荐文章于 2021-05-26 19:15:20 发布