diff options
Diffstat (limited to 'app/src/main/res/drawable')
-rwxr-xr-x | app/src/main/res/drawable/navigation_drawer_item_selector.xml | 20 | ||||
-rwxr-xr-x | app/src/main/res/drawable/navigation_drawer_separator_selector.xml | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/navigation_drawer_item_selector.xml b/app/src/main/res/drawable/navigation_drawer_item_selector.xml new file mode 100755 index 0000000..4672bbb --- /dev/null +++ b/app/src/main/res/drawable/navigation_drawer_item_selector.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item
+ android:state_pressed="true">
+ <shape>
+ <solid android:color="#757575" />
+ </shape>
+ </item>
+ <item
+ android:state_activated="true">
+ <shape>
+ <solid android:color="#454545" />
+ </shape>
+ </item>
+ <item>
+ <shape>
+ <solid android:color="#121212" />
+ </shape>
+ </item>
+</selector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/navigation_drawer_separator_selector.xml b/app/src/main/res/drawable/navigation_drawer_separator_selector.xml new file mode 100755 index 0000000..516b1e0 --- /dev/null +++ b/app/src/main/res/drawable/navigation_drawer_separator_selector.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item
+ android:state_pressed="true">
+ <shape>
+ <solid android:color="#555555" />
+ </shape>
+ </item>
+ <item
+ android:state_activated="true">
+ <shape>
+ <solid android:color="#343434" />
+ </shape>
+ </item>
+ <item>
+ <shape>
+ <solid android:color="#252525" />
+ </shape>
+ </item>
+</selector>
\ No newline at end of file |