Added bottom padding to the playlist detail list so the FAB doesn't cut off menus at the bottom of the list.

This commit is contained in:
Aidan Follestad 2015-04-23 12:48:30 -05:00
commit 049d4262b7
2 changed files with 5 additions and 3 deletions

View file

@ -1,7 +1,7 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
@ -21,6 +21,7 @@
android:clipToPadding="false"
android:divider="@null"
android:dividerHeight="0px"
android:paddingBottom="@dimen/playlist_list_bottom_offset"
android:scrollbars="vertical" />
</LinearLayout>