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

25 lines
949 B
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">
2021-03-17 21:11:14 +01:00
<com.google.android.exoplayer2.ui.PlayerView
2020-07-17 16:35:39 +02:00
android:id="@+id/video_player"
2021-04-05 12:42:35 +02:00
android:layout_width="wrap_content"
2021-06-07 13:23:11 +02:00
android:layout_height="match_parent"
2021-10-17 19:43:03 +02:00
android:layout_gravity="center"
app:show_shuffle_button="true"
app:repeat_toggle_modes="all|one"/>
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"
app:tint="@color/white"/>
</FrameLayout>