I'm trying to create a shape that has a white background with a black border.
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle" >
<solid android:color="#000000" />
<padding
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
android:top="1dp" />
</shape>
</item>
<item>
<shape android:shape="rectangle" >
<solid android:color="#80FFFFFF" />
</shape>
</item>
</layer-list>
However, changing the color code from #FFFFFF
to #80FFFFFF
results in some of the black showing through. How can I achieve the desired see-through effect while maintaining the black border?