Skip to content

Instantly share code, notes, and snippets.

@mustafayigitt
Last active June 14, 2020 08:52
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 mustafayigitt/bb3af85e4a504aeeb6bc77bda36989f9 to your computer and use it in GitHub Desktop.
Save mustafayigitt/bb3af85e4a504aeeb6bc77bda36989f9 to your computer and use it in GitHub Desktop.
recyclerview in FrameLayout
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.MainActivity">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerViewProfileData"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment