">
美文网首页
线性布局LinearLayout

线性布局LinearLayout

作者: _弓长_大人 | 来源:发表于2018-09-25 12:46 被阅读5次

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:text="hello world"
        android:gravity="center"
        android:textSize="10sp"
        android:layout_margin="10dp"
        android:layout_weight="1"
        android:background="#ff0000"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2"
        android:orientation="horizontal">
    <TextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:text="hello world"
        android:gravity="center"
        android:textSize="20sp"
        android:layout_margin="10dp"
        android:layout_weight="1"
        android:background="#00ff00"/>
        <TextView
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:text="hello world"
            android:gravity="center"
            android:textSize="20sp"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:background="#00ff00"/>
        <TextView
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:text="hello world"
            android:gravity="center"
            android:textSize="20sp"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:background="#00ff00"/>
    
    
    
    </LinearLayout>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:text="hello world"
        android:gravity="center"
        android:textSize="10sp"
        android:layout_margin="10dp"
        android:layout_weight="1"
        android:background="#00ff00"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:text="hello world"
        android:gravity="center"
        android:textSize="10sp"
        android:layout_margin="10dp"
        android:layout_weight="1"
        android:background="#0000ff"/>
    

    </LinearLayout>

    相关文章

      网友评论

          本文标题:线性布局LinearLayout

          本文链接:https://www.haomeiwen.com/subject/tycckftx.html