diff options
author | Scott Jackson <daneren2005@gmail.com> | 2015-08-24 17:48:00 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2015-08-24 17:48:00 -0700 |
commit | 6d30b8cfda0c8d848d20abc6cd9805ed763836ef (patch) | |
tree | f3f2dd1b7881f51cdb0d4598c097e8e138bc9eeb /app/src/main/res/layout | |
parent | c6d2629702b220e0ce9c19e41793dad84edcbb76 (diff) | |
download | dsub-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')
-rw-r--r-- | app/src/main/res/layout/download_playlist.xml | 23 |
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 |