|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent">
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |
|
|
\ No newline at end of file |
|
|
<include layout="@layout/layout_tool_bar" />
|
|
|
|
|
|
<com.br_technology.securitytrain_master.view.ViewToolBar
|
|
|
android:id="@+id/tool_bar"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_below="@id/status_bar"
|
|
|
android:visibility="visible"
|
|
|
app:toolTitle="课程详情" />
|
|
|
|
|
|
<com.br_technology.securitytrain_master.view.MyVideoPlayer
|
|
|
android:id="@+id/video_player"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="210dp"
|
|
|
android:layout_below="@id/tool_bar" />
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
android:id="@+id/tab_layout"
|
|
|
style="@style/SearchTab"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="?actionBarSize"
|
|
|
android:layout_below="@id/video_player"
|
|
|
android:overScrollMode="never"
|
|
|
app:tabMode="auto"
|
|
|
app:tabSelectedTextColor="@color/color_252"
|
|
|
app:tabTextColor="@color/color_96" />
|
|
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
|
android:id="@+id/view_pager"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_below="@id/tab_layout" />
|
|
|
|
|
|
</RelativeLayout> |
|
|
\ No newline at end of file |
...
|
...
|
|