aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/abstract_recycler_fragment.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-08-19 18:56:01 -0700
committerScott Jackson <daneren2005@gmail.com>2015-08-19 18:56:01 -0700
commitebb030da99785161852a8cf3fc3d62b602758165 (patch)
treeb3618b2e94cfe3bdaef25c498f123957c0fa3494 /app/src/main/res/layout/abstract_recycler_fragment.xml
parent0fdcde2c7cd2886454b8721fb9d50bae03dca9fe (diff)
downloaddsub-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/layout/abstract_recycler_fragment.xml')
-rw-r--r--app/src/main/res/layout/abstract_recycler_fragment.xml19
1 files changed, 15 insertions, 4 deletions
diff --git a/app/src/main/res/layout/abstract_recycler_fragment.xml b/app/src/main/res/layout/abstract_recycler_fragment.xml
index 47141450..0e0c87f4 100644
--- a/app/src/main/res/layout/abstract_recycler_fragment.xml
+++ b/app/src/main/res/layout/abstract_recycler_fragment.xml
@@ -10,12 +10,23 @@
android:layout_height="fill_parent"
android:orientation="vertical" >
- <android.support.v7.widget.RecyclerView
- android:id="@+id/fragment_recycler"
+ <RelativeLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
- android:layout_weight="1.0"
- android:scrollbars="vertical"/>
+ android:layout_weight="1.0">
+
+ <android.support.v7.widget.RecyclerView
+ android:id="@+id/fragment_recycler"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:scrollbars="vertical"/>
+
+ <github.daneren2005.dsub.view.FastScroller
+ android:id="@+id/fragment_fast_scroller"
+ android:layout_width="wrap_content"
+ android:layout_height="fill_parent"
+ android:layout_alignParentRight="true"/>
+ </RelativeLayout>
<include layout="@layout/tab_progress" />
</LinearLayout>