Skip to content

Instantly share code, notes, and snippets.

@patrick-elmquist
Last active November 21, 2018 08:30
Show Gist options
  • Save patrick-elmquist/78e5d775b6312dbb415dfbe07e2ce00f to your computer and use it in GitHub Desktop.
Save patrick-elmquist/78e5d775b6312dbb415dfbe07e2ce00f to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
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:orientation="vertical"
android:clipChildren="false"
>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
app:title="@string/app_name"
app:titleTextAppearance="@style/AppTheme.Title"
/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="280dp"
android:background="@android:color/black"
android:elevation="@dimen/list_elevation"
/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment