aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/src/main/res/layout/album_cell_item.xml2
-rw-r--r--app/src/main/res/layout/basic_list_item.xml2
-rw-r--r--app/src/main/res/layout/genre_list_item.xml2
-rw-r--r--app/src/main/res/layout/song_list_item.xml2
-rw-r--r--app/src/main/res/layout/user_list_item.xml2
-rw-r--r--app/src/main/res/values/styles.xml2
6 files changed, 6 insertions, 6 deletions
diff --git a/app/src/main/res/layout/album_cell_item.xml b/app/src/main/res/layout/album_cell_item.xml
index 46e2b1a6..fe634c13 100644
--- a/app/src/main/res/layout/album_cell_item.xml
+++ b/app/src/main/res/layout/album_cell_item.xml
@@ -3,7 +3,7 @@
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background="@drawable/abc_item_background_holo_light">
+ android:background="?attr/selectableItemBackground">
<RelativeLayout
android:layout_width="match_parent"
diff --git a/app/src/main/res/layout/basic_list_item.xml b/app/src/main/res/layout/basic_list_item.xml
index 4974f4f5..88d8ca20 100644
--- a/app/src/main/res/layout/basic_list_item.xml
+++ b/app/src/main/res/layout/basic_list_item.xml
@@ -3,7 +3,7 @@
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:background="@drawable/abc_item_background_holo_light">
+ android:background="?attr/selectableItemBackground">
<TextView
android:id="@+id/item_name"
diff --git a/app/src/main/res/layout/genre_list_item.xml b/app/src/main/res/layout/genre_list_item.xml
index 9a6e4245..a6a34c52 100644
--- a/app/src/main/res/layout/genre_list_item.xml
+++ b/app/src/main/res/layout/genre_list_item.xml
@@ -3,7 +3,7 @@
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:background="@drawable/abc_item_background_holo_light">
+ android:background="?attr/selectableItemBackground">
<TextView
android:id="@+id/genre_name"
diff --git a/app/src/main/res/layout/song_list_item.xml b/app/src/main/res/layout/song_list_item.xml
index 80996510..9be27192 100644
--- a/app/src/main/res/layout/song_list_item.xml
+++ b/app/src/main/res/layout/song_list_item.xml
@@ -4,7 +4,7 @@
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
- android:background="@drawable/abc_item_background_holo_light">
+ android:background="?attr/selectableItemBackground">
<CheckedTextView
android:id="@+id/song_check"
diff --git a/app/src/main/res/layout/user_list_item.xml b/app/src/main/res/layout/user_list_item.xml
index 71cafacd..aa2d13c9 100644
--- a/app/src/main/res/layout/user_list_item.xml
+++ b/app/src/main/res/layout/user_list_item.xml
@@ -3,7 +3,7 @@
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:background="@drawable/abc_item_background_holo_light">
+ android:background="?attr/selectableItemBackground">
<github.daneren2005.dsub.view.RecyclingImageView
android:id="@+id/item_avatar"
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
index 061cfae7..c4a53b99 100644
--- a/app/src/main/res/values/styles.xml
+++ b/app/src/main/res/values/styles.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="BasicButton">
- <item name="android:background">@drawable/abc_item_background_holo_light</item>
+ <item name="android:background">?attr/selectableItemBackground</item>
</style>
<style name="MoreButton" parent="BasicButton">