1.1LinearLayout

<!-- 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>

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值