我想为线性布局设置边框颜色为白色,但没有内部颜色。
这是我的代码,显示内部颜色为黑色。错误在哪里?
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:left="0dp" android:right="0dp" android:top="-10dp" android:bottom="-10dp">
<shape android:shape="rectangle">
<stroke android:width="1dp" android:color="#ffffff" />
</shape>
</item>
</layer-list>