aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/download_playlist.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-08-24 17:48:00 -0700
committerScott Jackson <daneren2005@gmail.com>2015-08-24 17:48:00 -0700
commit6d30b8cfda0c8d848d20abc6cd9805ed763836ef (patch)
treef3f2dd1b7881f51cdb0d4598c097e8e138bc9eeb /app/src/main/res/layout/download_playlist.xml
parentc6d2629702b220e0ce9c19e41793dad84edcbb76 (diff)
downloaddsub-6d30b8cfda0c8d848d20abc6cd9805ed763836ef.tar.gz
dsub-6d30b8cfda0c8d848d20abc6cd9805ed763836ef.tar.bz2
dsub-6d30b8cfda0c8d848d20abc6cd9805ed763836ef.zip
Add fast scrolling with no bubble to NowPlayingFragment
Diffstat (limited to 'app/src/main/res/layout/download_playlist.xml')
-rw-r--r--app/src/main/res/layout/download_playlist.xml23
1 files changed, 17 insertions, 6 deletions
diff --git a/app/src/main/res/layout/download_playlist.xml b/app/src/main/res/layout/download_playlist.xml
index 7a83330c..db74f8ca 100644
--- a/app/src/main/res/layout/download_playlist.xml
+++ b/app/src/main/res/layout/download_playlist.xml
@@ -19,11 +19,22 @@
android:padding="10dip"
android:textColor="?android:textColorPrimary"/>
- <android.support.v7.widget.RecyclerView
- android:id="@+id/download_list"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1"
- android:scrollbars="vertical"/>
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0">
+
+ <android.support.v7.widget.RecyclerView
+ android:id="@+id/download_list"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:scrollbars="vertical"/>
+
+ <github.daneren2005.dsub.view.FastScroller
+ android:id="@+id/download_fast_scroller"
+ android:layout_width="wrap_content"
+ android:layout_height="fill_parent"
+ android:layout_alignParentRight="true"/>
+ </RelativeLayout>
</LinearLayout> \ No newline at end of file