Skip to content

Instantly share code, notes, and snippets.

@mzgreen
Created February 15, 2015 11:12
Show Gist options
  • Save mzgreen/8374572ce6057415113f to your computer and use it in GitHub Desktop.
Save mzgreen/8374572ce6057415113f to your computer and use it in GitHub Desktop.
HideOnScrollExample - activity_main layout
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>
<ImageButton
android:id="@+id/fabButton"
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_gravity="bottom|right"
android:layout_marginBottom="16dp"
android:layout_marginRight="16dp"
android:background="@drawable/fab_background"
android:src="@drawable/ic_favorite_outline_white_24dp"
android:contentDescription="@null"/>
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment