diff options
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 |