<?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 layout="@layout/include_base_title" /> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/white" 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:tabSelectedTextColor="@color/mainThemeColor" app:tabTextColor="@color/mainTextColor" /> <include layout="@layout/include_line_view" /> <androidx.viewpager.widget.ViewPager android:id="@+id/logViewPager" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" /> </LinearLayout> </LinearLayout>