mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
3.0 KiB
88 lines
3.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout 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:keepScreenOn="true">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/video"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/black"
|
|
android:clickable="true"
|
|
android:focusable="true">
|
|
|
|
<androidx.media3.ui.PlayerView
|
|
android:id="@+id/surface"
|
|
style="@style/Player.Live"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone"
|
|
app:surface_type="surface_view" />
|
|
|
|
<androidx.media3.ui.PlayerView
|
|
android:id="@+id/texture"
|
|
style="@style/Player.Live"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone"
|
|
app:surface_type="texture_view" />
|
|
|
|
<tv.danmaku.ijk.media.player.ui.IjkVideoView
|
|
android:id="@+id/ijk"
|
|
style="@style/Player.Live"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone" />
|
|
|
|
</FrameLayout>
|
|
|
|
<include
|
|
android:id="@+id/widget"
|
|
layout="@layout/view_widget_live"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<include
|
|
android:id="@+id/control"
|
|
layout="@layout/view_control_live"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/recycler"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/shape_live_list"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone"
|
|
tools:visibility="visible">
|
|
|
|
<com.fongmi.android.tv.ui.custom.CustomLiveListView
|
|
android:id="@+id/group"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
tools:itemCount="5"
|
|
tools:listitem="@layout/adapter_group" />
|
|
|
|
<View
|
|
android:id="@+id/divide"
|
|
android:layout_width="0.3dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/grey_700"
|
|
android:visibility="gone" />
|
|
|
|
<com.fongmi.android.tv.ui.custom.CustomLiveListView
|
|
android:id="@+id/channel"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
tools:itemCount="5"
|
|
tools:listitem="@layout/adapter_channel" />
|
|
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
|
|
|