线性布局LinearLayout

2018-09-25  本文已影响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>

上一篇下一篇

猜你喜欢

热点阅读