<?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:id="@+id/rootView" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <com.pengxh.kt.lite.widget.TitleBarView android:id="@+id/titleView" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/mainThemeColor" app:tbv_show_left_image="false" app:tbv_show_right_image="true" app:tbv_text="@string/app_name" /> <!-- 高度随意,页面初始化会自动修正为16:9 --> <com.shuyu.gsyvideoplayer.video.StandardGSYVideoPlayer android:id="@+id/rtspPlayerView" android:layout_width="match_parent" android:layout_height="220dp" /> <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="vertical"> <com.google.android.material.tabs.TabLayout android:id="@+id/tabLayout" android:layout_width="match_parent" android:layout_height="wrap_content" app:tabIndicatorColor="@color/mainThemeColor" app:tabIndicatorFullWidth="false" app:tabIndicatorHeight="3dp" app:tabMode="auto" app:tabSelectedTextColor="@color/mainThemeColor" /> <com.pengxh.kt.lite.widget.NoScrollViewPager android:id="@+id/viewPager" android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout> </LinearLayout>