Skip to content

Instantly share code, notes, and snippets.

@mzgreen
Last active August 29, 2015 14:16
Show Gist options
  • Save mzgreen/0f8111db8b780efeb372 to your computer and use it in GitHub Desktop.
Save mzgreen/0f8111db8b780efeb372 to your computer and use it in GitHub Desktop.
PartTwoActivity layout with tabs
<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:clipToPadding="false"/>
<LinearLayout
android:id="@+id/toolbarContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>
<include layout="@layout/tabs"/>
</LinearLayout>
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment