Skip to content

Instantly share code, notes, and snippets.

@DanishAmjad12
Last active August 26, 2019 17:57
Show Gist options
  • Save DanishAmjad12/811998c1f935173b4aa94299f1830f6f to your computer and use it in GitHub Desktop.
Save DanishAmjad12/811998c1f935173b4aa94299f1830f6f to your computer and use it in GitHub Desktop.
This layout describes how you can add a SwipeRefreshLayout to your Layout file.
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipeRefresh"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment