mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 13:23:58 +01:00
32 lines
No EOL
853 B
XML
32 lines
No EOL
853 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<selector
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item
|
|
android:state_enabled="true" >
|
|
<shape
|
|
android:shape="rectangle">
|
|
<solid
|
|
android:color="@color/deleteButton"/>
|
|
<corners
|
|
android:radius="3dp" />
|
|
<stroke
|
|
android:width="5px"
|
|
android:color="@color/deleteRed" />
|
|
</shape>
|
|
</item>
|
|
|
|
<item
|
|
android:state_enabled="false" >
|
|
<shape
|
|
android:shape="rectangle">
|
|
<solid
|
|
android:color="@color/deleteButtonDark"/>
|
|
<corners
|
|
android:radius="3dp" />
|
|
</shape>
|
|
</item>
|
|
|
|
</selector> |