Last active
January 3, 2019 08:36
-
-
Save larsparendt/f1a8e0fff1af3927b65434f110f392b4 to your computer and use it in GitHub Desktop.
Boilerplate for creating a scrolling layout with toolbar (https://developer.android.com/reference/android/support/design/widget/AppBarLayout)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<android.support.design.widget.CoordinatorLayout | |
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="match_parent"> | |
<android.support.v4.widget.NestedScrollView | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
app:layout_behavior="@string/appbar_scrolling_view_behavior"> | |
<android.support.constraint.ConstraintLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content"> | |
<!-- Your scrolling content --> | |
</android.support.constraint.ConstraintLayout> | |
</android.support.v4.widget.NestedScrollView> | |
<android.support.design.widget.AppBarLayout | |
android:layout_height="wrap_content" | |
android:layout_width="match_parent"> | |
<android.support.v7.widget.Toolbar | |
android:layout_height="?attr/actionBarSize" | |
android:layout_width="match_parent" | |
... | |
app:layout_scrollFlags="scroll|enterAlways"/> | |
<android.support.design.widget.TabLayout | |
... | |
app:layout_scrollFlags="scroll|enterAlways"/> | |
</android.support.design.widget.AppBarLayout> | |
</android.support.design.widget.CoordinatorLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment