Added Android code
[wl-app.git] / Android / app / src / main / res / drawable / close_filters_selector.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
3     <item android:state_pressed="true">
4         <shape android:shape="oval">
5             <solid android:color="@color/red_dark"/>
6         </shape>
7     </item>
8     <item android:state_focused="true">
9         <shape android:shape="oval">
10             <solid android:color="@color/red_dark"/>
11         </shape>
12     </item>
13     <item>
14         <shape android:shape="oval">
15             <solid android:color="@color/white"/>
16         </shape>
17     </item>
18 </selector>