0

问题: ALinearLayout是具有不同的背景(白色)和深色轮廓。

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape = "rectangle">
  <corners
      android:radius="2dp"
      android:topRightRadius="0dp"
      android:bottomRightRadius="0dp"
      android:bottomLeftRadius="0dp" />
  <stroke
      android:width="1dp"
      android:color="#000000" />

</shape>

我尝试了什么:以下代码被称为"android:background"布局文件中的一个元素。这样做不会让我LinearLayout获得我想要的白色背景,但会获得深色轮廓。关于如何实现两者的任何想法?帮忙:)

4

2 回答 2

1

把你的LinearLayout里面一个FrameLayout. 给FrameLayout黑色背景。给LinearLayout白色背景。将LinearLayout's边距设置为1dp

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@android:color/black" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_margin="1dp"
        android:background="@android:color/white" >

        ....
        ....

    </LinearLayout>

</FrameLayout>
于 2013-08-22T07:17:01.223 回答
1

你也可以试试这个

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape = "rectangle">
  <corners
      android:radius="2dp"
      android:topRightRadius="0dp"
      android:bottomRightRadius="0dp"
      android:bottomLeftRadius="0dp" />
  <stroke
      android:width="1dp"
      android:color="#000000" />
  <gradient android:startColor="#FFFFFF"
    android:endColor="#FFFFFF"
    android:angle="90"/>

</shape>
于 2013-08-22T07:28:22.647 回答