Skip to content

Instantly share code, notes, and snippets.

@ashishkudale
Last active May 13, 2018 12:30
Show Gist options
  • Save ashishkudale/636ae6430c056580358778ebd4cde13a to your computer and use it in GitHub Desktop.
Save ashishkudale/636ae6430c056580358778ebd4cde13a to your computer and use it in GitHub Desktop.
HomeActivity xml only consists of a single recycler view which contains both list.
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ashishkudale.list_in_list.HomeActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/rvSubject"
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