Created
May 24, 2018 11:23
-
-
Save seupedro/0489800208dff5236b9c370323f5119f to your computer and use it in GitHub Desktop.
A custom Scrollview with TabLayout and ImageView inside with parallax effect
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
<?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" | |
tools:context=".activity.AquaInfo"> | |
<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/AppTheme.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:expandedTitleMarginBottom="?attr/actionBarSize" | |
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap" | |
app:titleEnabled="true" | |
app:toolbarId="@+id/toolbar"> | |
<ImageView | |
android:id="@+id/aqua_info_image" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:fitsSystemWindows="true" | |
android:scaleType="centerCrop" | |
android:src="@drawable/fish_nemo" | |
app:layout_collapseMode="parallax" /> | |
<View | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:alpha="0.3" | |
android:background="@android:color/black" | |
android:fitsSystemWindows="true" /> | |
<android.support.v7.widget.Toolbar | |
android:id="@+id/toolbar" | |
android:layout_width="match_parent" | |
android:layout_height="?attr/actionBarSize" | |
android:layout_gravity="top" | |
android:layout_marginBottom="36dp" | |
app:layout_collapseMode="pin" | |
app:popupTheme="@style/AppTheme.PopupOverlay" /> | |
<android.support.design.widget.TabLayout | |
android:id="@+id/aqua_info_tabs" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_gravity="bottom" | |
app:tabIndicatorColor="@android:color/white" | |
app:tabSelectedTextColor="@android:color/white" | |
app:tabTextColor="@android:color/white" /> | |
</android.support.design.widget.CollapsingToolbarLayout> | |
</android.support.design.widget.AppBarLayout> | |
<include layout="@layout/content_aqua_info" /> | |
<android.support.design.widget.FloatingActionButton | |
android:id="@+id/fab_aqua_info" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_gravity="bottom|end" | |
android:layout_margin="@dimen/fab_margin" | |
app:srcCompat="@android:drawable/ic_dialog_email" /> | |
</android.support.design.widget.CoordinatorLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment