<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@drawable/ic_bground"
|
android:orientation="vertical">
|
|
<android.support.design.widget.AppBarLayout
|
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="wrap_content"
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
<android.support.v7.widget.Toolbar
|
android:id="@+id/toolbar"
|
android:layout_width="match_parent"
|
android:layout_height="?attr/actionBarSize"
|
android:background="?attr/colorPrimary"
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
app:popupTheme="@style/AppTheme.NoActionBar.PopupOverlay"
|
app:titleTextAppearance="@style/Toolbar_TextAppearance_White"/>
|
<android.support.design.widget.TabLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tab"
|
|
android:background="@color/profile_bg"
|
android:layout_below="@+id/toolbar_set">
|
</android.support.design.widget.TabLayout>
|
</android.support.design.widget.AppBarLayout>
|
|
<android.support.v4.view.ViewPager
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:id="@+id/vp"></android.support.v4.view.ViewPager>
|
|
</LinearLayout>
|