10 lines
317 B
XML
10 lines
317 B
XML
<!-- res/drawable/border.xml -->
|
|
<shape xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
tools:ignore="ExtraText">
|
|
<solid android:color="@android:color/transparent" />
|
|
<stroke
|
|
android:color="#000000"
|
|
android:width="2dp" />
|
|
</shape>
|