mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 18:28:59 +03:00
Fix unresponsive preview player controls
Media controls view were covered by a ScrollView stealing all touch events. By changing it to FrameLayout, touch events can reach media controls. Content embedded inside ScrollView should not exceed screen boundaries. If so - content must be changed. This fixes immediate problem with unresponsive media controls reported in #6796 and #6782. Signed-off-by: Chris Narkiewicz <hello@ezaquarii.com>
This commit is contained in:
parent
1fec59e719
commit
6e6f8303a8
1 changed files with 2 additions and 5 deletions
|
@ -68,13 +68,10 @@
|
|||
android:layout_margin="@dimen/standard_margin" />
|
||||
</RelativeLayout>
|
||||
|
||||
|
||||
<ScrollView
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<include layout="@layout/empty_list" />
|
||||
</ScrollView>
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
|
|
Loading…
Reference in a new issue