【发布时间】:2014-09-06 10:31:42
【问题描述】:
我有一个占满全屏且背景为白色的相对布局。 (fill_parent 已设置) 我需要在左侧和右侧留出边距。边距区域应具有不同的背景颜色。 如何设置边距区域的背景颜色?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/c1_cnxlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:background="@color/purewhite" >
【问题讨论】:
标签: android margin android-relativelayout