这是我的应用程序现在的样子截图:
http://www.abload.de/image.php?img=unbenannt4kqjb.png
这是灰色形状的代码:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:top="0dp"
android:bottom="0dp"
android:left="0dp"
android:right="0dp" >
<shape
android:shape="rectangle" >
<stroke
android:width="8dp"
android:color="#9b9c9c" />
<padding
android:left="13dp"
android:top="13dp"
android:right="13dp"
android:bottom="13dp" />
<corners
android:radius="10dp"
android:topLeftRadius="0dp"
android:bottomRightRadius="0dp" />
<solid
android:color="@android:color/background_light" />
</shape>
</item>
正如您在屏幕截图中看到的那样,右上角和左下角仍为白色。好吧,我用红色标记它,这样更容易识别。我想用与灰色形状相同的灰色为这件红色上色,这样就只有一个“内圆角”。我希望你明白我的意思。
我通过将其设置为布局的背景来包含形状。
提前感谢。
答案 0 :(得分:1)
好的,实际上它真的很简单:
我唯一需要做的就是添加另一个用原始背景颜色包围旧布局的布局。
这就是布局现在的样子:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#9b9c9c"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_shape"
android:orientation="vertical" >
...
</LinearLayout>
</LinearLayout>