Fix add a scroll view to resolve app errors dialog bottom occlusion problem

This commit is contained in:
2022-10-01 03:47:29 +08:00
parent a1d2d7ddf0
commit e8990f50f9

View File

@@ -19,6 +19,19 @@
android:textSize="12sp"
android:visibility="gone" />
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fadingEdgeLength="10dp"
android:fillViewport="true"
android:requiresFadingEdge="vertical"
android:scrollbars="none">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.fankes.apperrorstracking.ui.view.ItemLinearLayout
android:id="@+id/app_info_item"
android:layout_width="match_parent"
@@ -152,3 +165,5 @@
android:textSize="15sp" />
</com.fankes.apperrorstracking.ui.view.ItemLinearLayout>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</LinearLayout>