Created
October 3, 2019 17:49
-
-
Save DanishAmjad12/a4232e783b7b201071d07c973784c579 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
android:layout_width="match_parent" | |
android:background="@color/white" | |
android:layout_height="match_parent"> | |
<androidx.core.widget.NestedScrollView | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:id="@+id/nestedScroll" | |
android:focusableInTouchMode="true" | |
android:fitsSystemWindows="true"> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:descendantFocusability="blocksDescendants" | |
android:orientation="vertical"> | |
<androidx.recyclerview.widget.RecyclerView | |
android:id="@+id/recycler" | |
android:layout_width="match_parent" | |
android:layout_marginTop="@dimen/margin_10" | |
android:layout_height="wrap_content" /> | |
</LinearLayout> | |
</androidx.core.widget.NestedScrollView> | |
</RelativeLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment