LinearLayout、FrameLayout、RelativeLayout 布局 内容居中

写的比较粗糙,初学android,凑凑合合,马马虎虎的看吧大笑

效果图如下:



<RelativeLayout 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">

    <LinearLayout
        android:id="@+id/ab"
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:layout_gravity="center_horizontal"
        android:gravity="center"
        android:background="@color/otr_yellow">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="aaa"
            android:textSize="20pt"/>
    </LinearLayout>

    <FrameLayout
        android:id="@+id/qw"
        android:layout_below="@+id/ab"
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:background="@color/holo_blue_dark">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="bbb"
            android:textSize="20pt"/>
    </FrameLayout>

    <RelativeLayout
        android:layout_below="@+id/qw"
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:background="@color/holo_red_dark">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="ccc"
            android:textSize="20pt"/>
     </RelativeLayout>
</RelativeLayout>


你可能感兴趣的:(LinearLayout、FrameLayout、RelativeLayout 布局 内容居中)