Skip to content

Instantly share code, notes, and snippets.

@bzkdjc
Forked from iPaulPro/include_list_viewpager.xml
Last active February 12, 2021 09:54
Show Gist options
  • Save bzkdjc/bcd63d785d58281379bf to your computer and use it in GitHub Desktop.
Save bzkdjc/bcd63d785d58281379bf to your computer and use it in GitHub Desktop.

Revisions

  1. bzkdjc revised this gist Feb 20, 2016. 1 changed file with 29 additions and 43 deletions.
    72 changes: 29 additions & 43 deletions include_list_viewpager.xml
    Original file line number Diff line number Diff line change
    @@ -1,30 +1,15 @@
    <?xml version="1.0" encoding="utf-8"?><!--
    ~ Copyright (C) 2015 The Android Open Source Project
    ~
    ~ Licensed under the Apache License, Version 2.0 (the "License");
    ~ you may not use this file except in compliance with the License.
    ~ You may obtain a copy of the License at
    ~
    ~ http://www.apache.org/licenses/LICENSE-2.0
    ~
    ~ Unless required by applicable law or agreed to in writing, software
    ~ distributed under the License is distributed on an "AS IS" BASIS,
    ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    ~ See the License for the specific language governing permissions and
    ~ limitations under the License.
    -->

    <android.support.design.widget.CoordinatorLayout
    <android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_content"
    android:id="@+id/coordinatorLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="256dp"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.design.widget.CollapsingToolbarLayout
    @@ -33,43 +18,44 @@
    android:layout_height="match_parent"
    app:layout_scrollFlags="scroll|exitUntilCollapsed">

    <android.support.design.widget.TabLayout
    android:id="@+id/tabs"
    <ImageView
    android:id="@+id/backdrop"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:layout_gravity="bottom"
    app:tabMode="scrollable"
    app:tabContentStart="72dp" />
    android:layout_height="256dp"
    android:fitsSystemWindows="true"
    android:scaleType="centerCrop"
    android:src="@drawable/eco0"
    app:layout_collapseMode="parallax"/>

    <android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:layout_collapseMode="parallax" />

    app:layout_collapseMode="pin"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

    </android.support.design.widget.CollapsingToolbarLayout>

    <android.support.design.widget.TabLayout
    android:id="@+id/tabLayout"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:layout_gravity="bottom"
    android:background="?attr/colorPrimary"
    android:scrollbars="horizontal"
    app:layout_anchor="@+id/appbar"
    app:layout_anchorGravity="bottom"
    app:layout_scrollFlags="scroll|enterAlways"
    app:tabGravity="center"
    app:tabMaxWidth="0dp"
    app:tabMode="scrollable"/>

    </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.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="end|bottom"
    android:layout_margin="8dp"
    android:src="@drawable/ic_done"
    app:layout_anchor="@id/tabs"
    app:layout_anchorGravity="center|left|start"
    app:fabSize="mini"
    app:layout_behavior="com.support.android.designlibdemo.ScrollAwareFABBehavior"
    app:borderWidth="0dp" />
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    </android.support.design.widget.CoordinatorLayout>
  2. @iPaulPro iPaulPro revised this gist Jun 11, 2015. 1 changed file with 0 additions and 0 deletions.
    Binary file removed CollapsingToolbarLayout-TabLayout.gif
    Binary file not shown.
  3. @iPaulPro iPaulPro revised this gist Jun 11, 2015. 2 changed files with 0 additions and 0 deletions.
    Binary file added CollapsingToolbarLayout-TabLayout.gif
    Loading
    Sorry, something went wrong. Reload?
    Sorry, we cannot display this file.
    Sorry, this file is invalid so it cannot be displayed.
    Binary file removed demo.gif
    Binary file not shown.
  4. @iPaulPro iPaulPro revised this gist Jun 11, 2015. 1 changed file with 0 additions and 0 deletions.
    Binary file added demo.gif
    Loading
    Sorry, something went wrong. Reload?
    Sorry, we cannot display this file.
    Sorry, this file is invalid so it cannot be displayed.
  5. @iPaulPro iPaulPro created this gist Jun 11, 2015.
    75 changes: 75 additions & 0 deletions include_list_viewpager.xml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,75 @@
    <?xml version="1.0" encoding="utf-8"?><!--
    ~ Copyright (C) 2015 The Android Open Source Project
    ~
    ~ Licensed under the Apache License, Version 2.0 (the "License");
    ~ you may not use this file except in compliance with the License.
    ~ You may obtain a copy of the License at
    ~
    ~ http://www.apache.org/licenses/LICENSE-2.0
    ~
    ~ Unless required by applicable law or agreed to in writing, software
    ~ distributed under the License is distributed on an "AS IS" BASIS,
    ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    ~ See the License for the specific language governing permissions and
    ~ limitations under the License.
    -->

    <android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="256dp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.design.widget.CollapsingToolbarLayout
    android:id="@+id/collapsing_toolbar"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_scrollFlags="scroll|exitUntilCollapsed">

    <android.support.design.widget.TabLayout
    android:id="@+id/tabs"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:layout_gravity="bottom"
    app:tabMode="scrollable"
    app:tabContentStart="72dp" />

    <android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:layout_collapseMode="parallax" />

    </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.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="end|bottom"
    android:layout_margin="8dp"
    android:src="@drawable/ic_done"
    app:layout_anchor="@id/tabs"
    app:layout_anchorGravity="center|left|start"
    app:fabSize="mini"
    app:layout_behavior="com.support.android.designlibdemo.ScrollAwareFABBehavior"
    app:borderWidth="0dp" />

    </android.support.design.widget.CoordinatorLayout>