12 lines
254 B
XML
12 lines
254 B
XML
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="rectangle">
|
||
|
|
|
||
|
|
<solid android:color="@color/white" />
|
||
|
|
|
||
|
|
<corners android:radius="10dp" />
|
||
|
|
|
||
|
|
<stroke android:width="1dp" android:color="@color/grey"/>
|
||
|
|
|
||
|
|
|
||
|
|
</shape>
|