DroidFS/app/src/main/res/layout/activity_video_player.xml

37 lines
1.3 KiB
XML
Raw Normal View History

2020-07-17 16:35:39 +02:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-07-17 16:35:39 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2021-10-17 19:43:03 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2020-07-17 16:35:39 +02:00
android:gravity="center"
android:layoutDirection="ltr"
2020-07-17 16:35:39 +02:00
android:background="@color/fullScreenBackgroundColor">
2022-01-18 20:18:44 +01:00
<FrameLayout
2022-01-20 12:59:05 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2022-01-18 20:18:44 +01:00
<sushi.hardcore.droidfs.widgets.DoubleTapPlayerView
android:id="@+id/video_player"
2022-01-20 12:59:05 +01:00
android:layout_width="match_parent"
2022-01-18 20:18:44 +01:00
android:layout_height="match_parent"
app:show_shuffle_button="true"
app:repeat_toggle_modes="all|one" />
<sushi.hardcore.droidfs.widgets.DoubleTapOverlay
android:id="@+id/double_tap_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="invisible"/>
</FrameLayout>
2020-07-17 16:35:39 +02:00
<ImageButton
android:id="@+id/rotate_button"
style="@style/ExoMediaButton"
android:layout_gravity="top|end"
android:layout_marginTop="15dp"
android:src="@drawable/icon_screen_rotation"
2022-01-18 20:18:44 +01:00
app:tint="@color/neutralIconTint"/>
</FrameLayout>