Fix: Irregular scroll issues of app sheet

This commit is contained in:
machiav3lli 2022-02-28 01:37:58 +01:00
parent b047b5e814
commit ad349831e5

View File

@ -26,22 +26,14 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">
<androidx.core.widget.NestedScrollView <androidx.recyclerview.widget.RecyclerView
android:id="@+id/scrollLayout" android:id="@+id/recyclerView"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="wrap_content"
android:layout_gravity="top" android:clipChildren="false"
android:clipToPadding="false"> android:clipToPadding="false"
tools:itemCount="1"
<androidx.recyclerview.widget.RecyclerView tools:listitem="@layout/item_app_info_x" />
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false"
android:clipToPadding="false"
tools:itemCount="1"
tools:listitem="@layout/item_app_info_x" />
</androidx.core.widget.NestedScrollView>
</com.google.android.material.circularreveal.CircularRevealFrameLayout> </com.google.android.material.circularreveal.CircularRevealFrameLayout>
</layout> </layout>