样式化布局轮廓

时间:2013-08-22 07:02:30

标签: android styles

问题:LinearLayout具有不同的背景(白色)和黑色轮廓。

<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具有我想要的白色背景但是获得了黑色轮廓。关于如何实现两者的任何想法? 请帮忙:)

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分: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>