summaryrefslogtreecommitdiff
path: root/res/drawable/focus_square_button.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/drawable/focus_square_button.xml')
-rw-r--r--res/drawable/focus_square_button.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/res/drawable/focus_square_button.xml b/res/drawable/focus_square_button.xml
new file mode 100644
index 0000000..bed0c57
--- /dev/null
+++ b/res/drawable/focus_square_button.xml
@@ -0,0 +1,21 @@
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <!-- pressed state -->
+ <item android:state_pressed="true">
+ <shape android:shape="rectangle">
+ <size android:width="80dp" android:height="80dp"/>
+ <stroke android:width="2dp" android:color="#FFFFFF00"/>
+ <solid android:color="#00FFFFFF"/>
+ </shape>
+
+ </item>
+
+ <item>
+ <shape android:shape="rectangle">
+ <size android:width="80dp" android:height="80dp"/>
+ <stroke android:width="0.5dp" android:color="#FFFFFF00"/>
+ <solid android:color="#00FFFFFF"/>
+ </shape>
+ </item>
+
+</selector> \ No newline at end of file