SwipeRefreshLayout 与 WebView 中的向下滚动冲突
Posted
技术标签:
【中文标题】SwipeRefreshLayout 与 WebView 中的向下滚动冲突【英文标题】:SwipeRefreshLayout conflict with scroll down in WebView 【发布时间】:2018-11-22 23:31:52 【问题描述】:在我的 WebView 应用程序中,SwipeRefreshLayout 不起作用,因为当我向下滚动时,它会触发页面重新加载功能。 我认为一种解决方案是限制下拉刷新布局。我试过了,它似乎不起作用。
这是我的实现:
Java 文件
SwipeRefreshLayout mySwipeRefreshLayout;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mySwipeRefreshLayout = (SwipeRefreshLayout)this.findViewById(R.id.swipeContainer);
String URL = "my_url";
mWebView = (WebView) findViewById(R.id.enyakin);
WebSettings webSettings = mWebView.getSettings();
mWebView.loadUrl(URL);
webSettings.setjavascriptEnabled(true);
mWebView.setWebViewClient(new WebViewClient()
// Phone call function if this matters
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url)
if (url.startsWith("tel:"))
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse(url));
startActivity(intent);
return true;
view.loadUrl(url);
return true;
);
mySwipeRefreshLayout.setOnRefreshListener(
new SwipeRefreshLayout.OnRefreshListener()
@Override
public void onRefresh()
mWebView.reload();
if (null != mySwipeRefreshLayout)
mySwipeRefreshLayout.setRefreshing(false);
);
XML 文件
<RelativeLayout 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:layout_
android:layout_
tools:context="com.google.firebase.quickstart.fcm.MainActivity"
tools:showIn="@layout/activity_main">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeContainer"
android:layout_
android:layout_
>
<android.support.v4.widget.NestedScrollView
android:layout_
android:layout_
android:clipToPadding="false"
android:fillViewport="true">
<WebView
android:id="@+id/enyakin"
android:layout_
android:layout_ />
</android.support.v4.widget.NestedScrollView>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>
您能帮我理解如何分离这两个滚动功能吗?
编辑: 看了here这没有回答我的问题
【问题讨论】:
Adding pull to refresh on webview for refreshing的可能重复 @MikeSpeed 没有解决方案 【参考方案1】:使用setOnChildScrollUpCallback 控制何时触发刷新。
这是 kotlin 中的示例代码。
mySwipeRefreshLayout.apply
setOnRefreshListener
// Handle refresh
setOnChildScrollUpCallback parent, child ->
// Return true to disable swiping to refresh.
// You can get scrolling position of nested scroll view and only return true when it is larger than 0.
【讨论】:
setOnChildScrollUpCallback 是重复的,你能分享完整的代码吗?以上是关于SwipeRefreshLayout 与 WebView 中的向下滚动冲突的主要内容,如果未能解决你的问题,请参考以下文章
SwipeRefreshLayout 与 RecyclerView 空和 TextView
SwipeRefreshLayout 与 WebView 中的向下滚动冲突
因为ViewPager与SwipeRefreshLayout冲突导致RecyclerView或者其他列表布局的item无法点击的问题
因为ViewPager与SwipeRefreshLayout冲突导致RecyclerView或者其他列表布局的item无法点击的问题
ViewPager 与SwipeRefreshLayout,RecyclerView,ScrollView滑动冲突解决方法