2015-01-19 02:11:30 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-09-25 15:32:45 +00:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2015-01-19 02:11:30 +00:00
|
|
|
|
2017-09-25 15:32:45 +00:00
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
|
|
android:background="?attr/media_overview_toolbar_background"
|
|
|
|
android:titleTextColor="?attr/media_overview_toolbar_foreground"
|
|
|
|
android:foreground="?attr/media_overview_toolbar_foreground"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"/>
|
|
|
|
|
|
|
|
<android.support.design.widget.TabLayout
|
|
|
|
android:id="@+id/tab_layout"
|
2015-01-19 02:11:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-09-25 15:32:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="top"
|
|
|
|
app:tabBackground="?attr/media_overview_toolbar_background"
|
|
|
|
app:tabIndicatorColor="@color/textsecure_primary"
|
|
|
|
app:tabSelectedTextColor="@color/textsecure_primary"/>
|
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
2015-01-19 02:11:30 +00:00
|
|
|
|
2017-09-25 15:32:45 +00:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
2015-01-19 02:11:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-09-07 19:26:34 +00:00
|
|
|
android:layout_height="match_parent"
|
2017-09-25 15:32:45 +00:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
2015-01-19 02:11:30 +00:00
|
|
|
|
2017-09-25 15:32:45 +00:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|