summaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorMatthew Wong <wongma@protonmail.ch>2015-08-11 19:56:32 -0400
committerMatthew Wong <wongma@protonmail.ch>2015-08-14 17:36:51 -0400
commitf4c0ee607e909caaacf52367901652ea89b16581 (patch)
tree8c22dc74c2dc7f373a2a17c06e1f27745201daaf /app/src/main/res
parentb75190fcd7926c3994f8191996661c19b7b12466 (diff)
Multi-select deletion of apps in settings page
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/drawable/autofill_row_background.xml5
-rw-r--r--app/src/main/res/layout/autofill_row_layout.xml2
2 files changed, 6 insertions, 1 deletions
diff --git a/app/src/main/res/drawable/autofill_row_background.xml b/app/src/main/res/drawable/autofill_row_background.xml
new file mode 100644
index 00000000..05e887ca
--- /dev/null
+++ b/app/src/main/res/drawable/autofill_row_background.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_selected="true" android:drawable="@color/blue_grey_200" />
+ <item android:drawable="@color/grey_white_1000" />
+</selector> \ No newline at end of file
diff --git a/app/src/main/res/layout/autofill_row_layout.xml b/app/src/main/res/layout/autofill_row_layout.xml
index 3f94a8ad..354f9181 100644
--- a/app/src/main/res/layout/autofill_row_layout.xml
+++ b/app/src/main/res/layout/autofill_row_layout.xml
@@ -3,7 +3,7 @@
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="64dp"
- android:background="@color/grey_white_1000">
+ android:background="@drawable/autofill_row_background">
<LinearLayout
android:layout_width="match_parent"