Skip to content

Instantly share code, notes, and snippets.

@magdamiu
Created December 28, 2020 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magdamiu/226d03bf35c84df8a528f74eceefb916 to your computer and use it in GitHub Desktop.
Save magdamiu/226d03bf35c84df8a528f74eceefb916 to your computer and use it in GitHub Desktop.
Add the RecyclerView inside of the layout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerViewEmails"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment