fix the scrolling of the storage fragment

This commit is contained in:
tibbi
2023-01-07 21:43:45 +01:00
parent cd426324df
commit c45b6f1d66

View File

@ -6,6 +6,11 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.core.widget.NestedScrollView
android:id="@+id/storage_nested_scrollview"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/storage_holder"
android:layout_width="match_parent"
@ -308,15 +313,15 @@
android:max="100"
app:trackThickness="2dp" />
</RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
<RelativeLayout
android:id="@+id/search_holder"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_height="match_parent"
android:alpha="0"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent">
android:visibility="gone">
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progress_bar"
@ -373,5 +378,4 @@
app:layoutManager="com.simplemobiletools.commons.views.MyGridLayoutManager" />
</RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</com.simplemobiletools.filemanager.pro.fragments.StorageFragment>