我知道有类似的问题,我已经尝试并实施了所有这些解决方案建议。然而,他们都没有与我合作。即使WebView完成加载数据,ScrollView永远不会停止滚动到底部。我想使用pull刷新并使用onScrollListener
隐藏操作栏。一切都很好,但我不能阻止scrolView
不停地滚动到底部。
我读到了这个:How to prevent a scrollview from scrolling to a webview after data is loaded?
我也读到了这个:webview is forcing my scrollview to the bottom
我尝试实现自定义scrollview
,它会覆盖requestChildFocus
方法。
我将android:descendantFocusability="blocksDescendants"
添加到我的xml文件中。
我也添加了android:focusableInTouchMode="true"
,但仍然没有好处,没有变化。它仍然迫使永远滚动。
以下是我的自定义滚动视图:
package com.example.john.cosmicbrowser;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.webkit.WebView;
import android.widget.ScrollView;
public class MyScrollView extends ScrollView
{
public MyScrollView(Context context)
{
super(context);
}
public MyScrollView(Context context, AttributeSet attributeSet)
{
super(context, attributeSet);
}
public MyScrollView(Context context, AttributeSet attributeSet, int defStyle)
{
super(context, attributeSet, defStyle);
}
@Override
public void requestChildFocus(View child, View focused)
{
if (focused instanceof WebView)
return;
super.requestChildFocus(child, focused);
}
}
这是我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe"
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_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".WebActivity"
tools:showIn="@layout/activity_webview"
>
<com.example.john.cosmicbrowser.MyScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusableInTouchMode="true"
android:descendantFocusability="blocksDescendants"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants"
>
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:padding="0dp"/>
<ProgressBar
android:id="@+id/cosmicProgressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="4dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:indeterminate="false"/>
</RelativeLayout>
</com.example.john.cosmicbrowser.MyScrollView>
</android.support.v4.widget.SwipeRefreshLayout>
例如,假设您在此网页浏览中打开了Google.com。页面加载后,令人难以置信的向下滚动到底部,你甚至看不到页面底部的任何信息。我该如何解决这个问题?任何帮助将非常感谢!提前谢谢!
顺便添加 android:descendantFocusability="blocksDescendants"
导致问题,就像Google.com打开后无法搜索一样,您无法输入Google搜索的任何输入吧!
答案 0 :(得分:0)
我遇到了同样的问题。我的解决方案是在加载URL后立即将webview的高度设置为等于其内容:
mWebView.setWebViewClient(new WebViewClient(){
@Override
public void onPageFinished(WebView view, String url) {
super.onPageFinished(view, url);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, mWebView.getMeasuredHeight());
params.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);
mWebView.setLayoutParams(params);
}
});
请注意,在我的情况下,RelativeLayout是WebView的父级,您应该更改为相应的。