diff options
author | Scott Jackson <daneren2005@gmail.com> | 2015-07-29 18:15:35 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2015-07-29 18:15:35 -0700 |
commit | 253d0bde8d7ed90bf20d073a0a656e5e874199fe (patch) | |
tree | 5407fd01118b447a2b2a1d575f35825774906f12 /app | |
parent | 0df472b6236090ef3a3b5f2cda718a8972f6d1b8 (diff) | |
download | dsub-253d0bde8d7ed90bf20d073a0a656e5e874199fe.tar.gz dsub-253d0bde8d7ed90bf20d073a0a656e5e874199fe.tar.bz2 dsub-253d0bde8d7ed90bf20d073a0a656e5e874199fe.zip |
Fix being able to click behind slide up bar
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/abstract_fragment_activity.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/src/main/res/layout/abstract_fragment_activity.xml b/app/src/main/res/layout/abstract_fragment_activity.xml index 672698de..b51922fd 100644 --- a/app/src/main/res/layout/abstract_fragment_activity.xml +++ b/app/src/main/res/layout/abstract_fragment_activity.xml @@ -128,9 +128,10 @@ </FrameLayout> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/now_playing_fragment_container" - android:layout_width="match_parent" - android:layout_height="0dp" - android:layout_weight="1"/> + android:id="@+id/now_playing_fragment_container" + android:layout_width="match_parent" + android:layout_height="0dp" + android:layout_weight="1" + android:clickable="true"/> </LinearLayout> </com.sothree.slidinguppanel.SlidingUpPanelLayout>
\ No newline at end of file |