Как решить проблему прокрутки и касания во вложенном scroll webview android
Когда я попытался прокрутить (вверх/вниз) внутренний свиток, внешний свиток перемещается в webview, для которого он обновляется с помощью "SwipeRefreshLayout". Пожалуйста, предоставьте лучший способ справиться с этой проблемой!
advance webview это мой пользовательский webview ссылка на github есть https://github.com/delight-im/Android-AdvancedWebView[^]
мой xml-код выглядит следующим образом
Что я уже пробовал:
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/constraintLayout" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/swipeContainer" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior"> <!--<WebView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/webView" android:layout_width="fill_parent" android:layout_height="fill_parent" > --> <android.support.v7.widget.LinearLayoutCompat android:layout_width="fill_parent" android:layout_height="fill_parent"> <im.delight.android.webview.AdvancedWebView android:id="@+id/webView" android:layout_width="fill_parent" android:layout_height="fill_parent" /> <ProgressBar android:id="@+id/progressBar" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" />