70 lines
2.9 KiB
XML
70 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.design.widget.CoordinatorLayout 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:fitsSystemWindows="true"
|
|
>
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/app_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="300dp"
|
|
android:fitsSystemWindows="true"
|
|
android:theme="@style/ToolBarTheme.AppBarOverlay">
|
|
|
|
<android.support.design.widget.CollapsingToolbarLayout
|
|
android:id="@+id/toolbar_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
app:contentScrim="?attr/colorPrimary"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap">
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_collapseMode="parallax" />
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
app:layout_collapseMode="pin"
|
|
android:fitsSystemWindows="true"
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
app:popupTheme="@style/ToolBarTheme.PopupOverlay" />
|
|
|
|
<com.flyco.tablayout.SlidingTabLayout
|
|
android:id="@+id/tab_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="4dp"
|
|
android:paddingBottom="2dp"
|
|
android:background="@color/white"
|
|
app:tl_indicator_color="@color/white"
|
|
app:tl_indicator_corner_radius="1.5dp"
|
|
app:tl_indicator_height="0dp"
|
|
app:tl_indicator_width="0dp"
|
|
app:tl_textSelectColor="@color/tabSelected"
|
|
app:tl_textUnselectColor="@color/grey"
|
|
app:tl_tab_space_equal ="true"
|
|
app:tl_textsize="13sp"
|
|
android:layout_gravity="bottom"
|
|
/>
|
|
|
|
</android.support.design.widget.CollapsingToolbarLayout>
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/viewpager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
</android.support.v4.view.ViewPager>
|
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout> |