我想在我的布局中创建这种类型的布局。
<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创建的,但是它不起作用,它会像那样创建,所以任何人都可以帮助我。
由于
答案 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>