30 lines
1021 B
XML
30 lines
1021 B
XML
<?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"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
android:id="@+id/toolbar"
|
|
layout="@layout/detail_toolbar" />
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tabs"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:visibility="gone"
|
|
app:tabIndicatorColor="@color/color_80d8ff"
|
|
app:tabIndicatorFullWidth="true"
|
|
app:tabIndicatorHeight="1.3dp"
|
|
app:tabSelectedTextColor="@color/color_eeeeee"
|
|
app:tabTextAppearance="@style/tabText"
|
|
app:tabTextColor="@color/color_777777" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fl_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout>
|