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

16 lines
653 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center"
android:background="@color/fullScreenBackgroundColor">
<com.google.android.exoplayer2.ui.SimpleExoPlayerView
android:id="@+id/video_player"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
app:controller_layout_id="@layout/exo_custom_playback_control"/>
</LinearLayout>