Android: Change container from SwipeRefreshLayout to FrameLayout

We were not doing anything with the SwipeRefreshLayout, and it
interfered with touch events. We may want to bring this back at some
point? But probably only after we handle Android scrolling correctly.
This commit is contained in:
Alex Studer 2024-07-07 01:20:01 -04:00 committed by Andrew Kaster
parent 86d27d180b
commit feb7c0d950
Notes: sideshowbarker 2024-07-16 21:30:46 +09:00

View file

@ -32,8 +32,8 @@
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh"
<FrameLayout
android:id="@+id/web_view_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
@ -43,5 +43,5 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".LadybirdActivity" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</FrameLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>