2022-09-09 19:10:10 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
2022-09-18 22:47:38 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2022-09-09 19:10:10 +05:30
|
|
|
|
2022-09-20 23:23:34 +05:30
|
|
|
<com.github.libretube.ui.views.CustomExoPlayerView
|
2022-09-09 19:10:10 +05:30
|
|
|
android:id="@+id/player"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@android:color/black"
|
|
|
|
app:show_buffering="when_playing">
|
|
|
|
|
2022-09-20 23:23:34 +05:30
|
|
|
<com.github.libretube.ui.views.DoubleTapOverlay
|
2022-09-09 19:10:10 +05:30
|
|
|
android:id="@+id/doubleTapOverlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center" />
|
|
|
|
|
2022-11-25 20:23:41 +05:30
|
|
|
<com.github.libretube.ui.views.PlayerGestureControlsView
|
|
|
|
android:id="@+id/playerGestureControlsView"
|
2022-11-25 16:26:45 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center" />
|
|
|
|
|
2022-09-20 23:23:34 +05:30
|
|
|
</com.github.libretube.ui.views.CustomExoPlayerView>
|
2022-09-09 19:10:10 +05:30
|
|
|
|
|
|
|
</LinearLayout>
|