mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-11 13:07:46 +01:00
19 lines
805 B
XML
19 lines
805 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@android:color/black"
|
|
android:id="@+id/relative_layout_view_video_activity"
|
|
android:keepScreenOn="true"
|
|
tools:application="ml.docilealligator.infinityforreddit.ViewVideoActivity">
|
|
|
|
<com.google.android.exoplayer2.ui.PlayerView
|
|
android:id="@+id/player_view_view_video_activity"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:controller_layout_id="@layout/exo_playback_control_view"/>
|
|
|
|
</RelativeLayout>
|