2017-01-26 19:38:53 +00:00
|
|
|
<LinearLayout
|
|
|
|
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:orientation="vertical"
|
2018-08-30 07:57:48 +00:00
|
|
|
tools:context="com.topjohnwu.magisk.fragments.LogFragment">
|
2016-08-21 15:21:37 +00:00
|
|
|
|
2017-01-26 19:38:53 +00:00
|
|
|
<android.support.design.widget.TabLayout
|
2016-08-21 15:21:37 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-01-26 19:38:53 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:id="@+id/tab"
|
|
|
|
app:tabPaddingEnd="20dp"
|
|
|
|
app:tabPaddingStart="20dp"
|
2017-01-27 17:10:50 +00:00
|
|
|
android:elevation="4dp"
|
2017-01-26 19:38:53 +00:00
|
|
|
android:visibility="gone">
|
2016-08-21 15:21:37 +00:00
|
|
|
|
2017-01-26 19:38:53 +00:00
|
|
|
</android.support.design.widget.TabLayout>
|
2016-08-21 15:21:37 +00:00
|
|
|
|
|
|
|
|
2017-01-26 19:38:53 +00:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:id="@+id/container"/>
|
|
|
|
</LinearLayout>
|