summaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable
diff options
context:
space:
mode:
authorTanuj M <thetanuj@hotmail.com>2020-08-29 14:34:20 +0530
committerTanuj M <thetanuj@hotmail.com>2020-08-29 14:34:20 +0530
commit28a256b0f53f3e4e13c9685dcd2346cdbc2e250e (patch)
treed5be9b124b181825fdb0beb35929295e0fffc4bf /app/src/main/res/drawable
parentca39aec887d9a706686ab999717f11806d42a5d7 (diff)
downloadSidePhOnelauncher-28a256b0f53f3e4e13c9685dcd2346cdbc2e250e.tar.gz
SidePhOnelauncher-28a256b0f53f3e4e13c9685dcd2346cdbc2e250e.tar.bz2
SidePhOnelauncher-28a256b0f53f3e4e13c9685dcd2346cdbc2e250e.zip
Added text blink effect on click
Diffstat (limited to 'app/src/main/res/drawable')
-rw-r--r--app/src/main/res/drawable/text_colors_default.xml7
-rw-r--r--app/src/main/res/drawable/text_colors_light.xml7
2 files changed, 14 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/text_colors_default.xml b/app/src/main/res/drawable/text_colors_default.xml
new file mode 100644
index 0000000..6109d07
--- /dev/null
+++ b/app/src/main/res/drawable/text_colors_default.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:color="@color/colorPrimaryTrans75" android:state_pressed="true" />
+ <item android:color="@color/colorPrimaryTrans75" android:state_selected="true" />
+ <item android:color="@color/colorPrimaryTrans75" android:state_focused="true" />
+ <item android:color="@color/colorPrimary" />
+</selector> \ No newline at end of file
diff --git a/app/src/main/res/drawable/text_colors_light.xml b/app/src/main/res/drawable/text_colors_light.xml
new file mode 100644
index 0000000..ff26af1
--- /dev/null
+++ b/app/src/main/res/drawable/text_colors_light.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:color="@color/colorPrimary" android:state_pressed="true" />
+ <item android:color="@color/colorPrimary" android:state_selected="true" />
+ <item android:color="@color/colorPrimary" android:state_focused="true" />
+ <item android:color="@color/colorPrimaryTrans75" />
+</selector> \ No newline at end of file