diff options
author | Scott Jackson <daneren2005@gmail.com> | 2015-08-19 18:56:01 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2015-08-19 18:56:01 -0700 |
commit | ebb030da99785161852a8cf3fc3d62b602758165 (patch) | |
tree | b3618b2e94cfe3bdaef25c498f123957c0fa3494 /app/src/main/res/drawable | |
parent | 0fdcde2c7cd2886454b8721fb9d50bae03dca9fe (diff) | |
download | dsub-ebb030da99785161852a8cf3fc3d62b602758165.tar.gz dsub-ebb030da99785161852a8cf3fc3d62b602758165.tar.bz2 dsub-ebb030da99785161852a8cf3fc3d62b602758165.zip |
Put back fast scrolling for artists, podcasts, and playlists
Diffstat (limited to 'app/src/main/res/drawable')
-rw-r--r-- | app/src/main/res/drawable/fast_scroller_bubble.xml | 16 | ||||
-rw-r--r-- | app/src/main/res/drawable/fast_scroller_handle.xml | 26 |
2 files changed, 42 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/fast_scroller_bubble.xml b/app/src/main/res/drawable/fast_scroller_bubble.xml new file mode 100644 index 00000000..02dfee5b --- /dev/null +++ b/app/src/main/res/drawable/fast_scroller_bubble.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + + <corners + android:topLeftRadius="44dp" + android:topRightRadius="44dp" + android:bottomLeftRadius="44dp" + android:bottomRightRadius="0px"/> + + <solid android:color="#FF0288D1"/> + + <size + android:height="88dp" + android:width="88dp"/> +</shape>
\ No newline at end of file diff --git a/app/src/main/res/drawable/fast_scroller_handle.xml b/app/src/main/res/drawable/fast_scroller_handle.xml new file mode 100644 index 00000000..e1744ceb --- /dev/null +++ b/app/src/main/res/drawable/fast_scroller_handle.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_selected="true"> + <shape android:shape="rectangle"> + <corners android:radius="2dp"/> + + <solid android:color="#FF0288D1"/> + + <size + android:height="32dp" + android:width="4dp"/> + </shape> + </item> + + <item> + <shape android:shape="rectangle"> + <corners android:radius="2dp"/> + + <solid android:color="#FF737373"/> + + <size + android:height="32dp" + android:width="4dp"/> + </shape> + </item> +</selector>
\ No newline at end of file |