8 lines
343 B
XML
8 lines
343 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape android:shape="rectangle"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<stroke android:width="1dp" android:color="#ffb1b1b1" />
|
|
<corners android:topLeftRadius="2dp" android:topRightRadius="2dp" android:bottomLeftRadius="2dp" android:bottomRightRadius="2dp" />
|
|
</shape>
|
|
|