Skip to content

Instantly share code, notes, and snippets.

@mzgreen
Created February 28, 2015 08:34
Show Gist options
  • Save mzgreen/ce503aeba273c322abbb to your computer and use it in GitHub Desktop.
Save mzgreen/ce503aeba273c322abbb to your computer and use it in GitHub Desktop.
PartTwoActivity class layout file
<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:background="?attr/colorPrimary"> <!-- added here -->
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"/> <!-- removed from here and tabs.xml -->
<include layout="@layout/tabs"/>
</LinearLayout>
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment