问题: 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
获得我想要的白色背景,但会获得深色轮廓。关于如何实现两者的任何想法?帮忙:)