diff options
author | Scott Jackson <daneren2005@gmail.com> | 2015-05-28 17:58:08 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2015-05-28 17:58:08 -0700 |
commit | 07665ccfbc9c9f72c6d384a00ff692dde141319a (patch) | |
tree | 331a9309b656426e9a849ef528b4341c184fcaff /app/src/main/res | |
parent | 50a5cee52fd0c0dd08a00ad59c2f9c2751e65834 (diff) | |
download | dsub-07665ccfbc9c9f72c6d384a00ff692dde141319a.tar.gz dsub-07665ccfbc9c9f72c6d384a00ff692dde141319a.tar.bz2 dsub-07665ccfbc9c9f72c6d384a00ff692dde141319a.zip |
Use ripple selector instead of basic holo one
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/album_cell_item.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/basic_list_item.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/genre_list_item.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/song_list_item.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/user_list_item.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/values/styles.xml | 2 |
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"> |