LinearLayout设置背景,但不是所有子项

时间:2014-01-04 19:00:54

标签: android android-linearlayout

我想做这个效果:

enter image description here

最后一个线性布局在ImageView中包含一个圆圈,背景从中心到末尾设置,我该怎么做?

使用形状不能正常工作..

1 个答案:

答案 0 :(得分:0)

您可以使用拉伸图像作为背景,也可以使用多层视图。 在后一种方式中,您可以拥有RelativeLayout,背景视图和前景视图:

<RelativeLayout
  android:layout_width="fill_parent"
  android:layout_height="48dp">
  <View
    android:layout_width="fill_parent"
    android:layout_height="32dp"
    android:layout_alignParentBottom="true"
    android:background="#808080" />
  <TextView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    text="This is the foreground" />
</RelativeLayout>