Skip to content

Instantly share code, notes, and snippets.

@anaselhajjaji
Created March 27, 2017 21:21
Show Gist options
  • Save anaselhajjaji/8da6532a8ec772edc4460df2d8d5994a to your computer and use it in GitHub Desktop.
Save anaselhajjaji/8da6532a8ec772edc4460df2d8d5994a to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/primary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_below="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment