如何创建这样的Android布局?

时间:2014-12-13 14:23:30

标签: android xml android-layout layout

如何在android studio中创建这样的布局。

图像为背景+文本水平和垂直居中+按钮:

enter image description here

1 个答案:

答案 0 :(得分:0)

您只需使用 RelativeLayout ,并将所有元素相应地放在其他元素上。

类似的东西:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <TextView
        android:id="@+id/centered_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true" />

    <LinearLayout
        android:id="@+id/bottom_right_container"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <!-- the stuff bottom right -->

    </LinearLayout>

</RelativeLayout>