如何在彼此之间创建叠加图像等布局

时间:2016-10-12 12:14:28

标签: android android-layout

我想创建一个布局来显示图像以覆盖其他像... enter image description here

我想在我的布局中创建这种类型的布局。

<RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="150dp">


            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true">

                <RelativeLayout
                    android:layout_width="130dp"
                    android:layout_height="130dp"
                    android:background="@drawable/round_blue"></RelativeLayout>

                <RelativeLayout
                    android:layout_width="130dp"
                    android:layout_height="130dp"
                    android:layout_marginLeft="60dp"
                    android:background="@drawable/round_yellow"></RelativeLayout>


            </RelativeLayout>


        </RelativeLayout>

我的差异圈布局是通过drawable创建的,但是它不起作用,它会像那样创建,所以任何人都可以帮助我。

由于

1 个答案:

答案 0 :(得分:2)

你可以试试这样的

<RelativeLayout
        android:layout_width="200dp"
        android:layout_height="150dp"
        android:layout_centerInParent="true">

        <RelativeLayout
            android:layout_width="120dp"
            android:layout_height="match_parent"
            android:layout_alignParentLeft="true"
            android:background="#aaff0000"></RelativeLayout>

        <RelativeLayout
            android:layout_width="120dp"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:background="#aa00ff00"></RelativeLayout>

    </RelativeLayout>