Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Web 视图中显示 html 文件,在该 Web 视图上,我在底部有一个按钮。在向下滚动该 html 页面后,我想在单击该按钮后移动该 Web 视图的顶部。
我需要一些人的建议来立即纠正这个问题。谢谢。
webView.scrollTo(0,0);
如果整个页面加载到 WebView 上,给定的功能将很好用。此外,您可以禁用按钮,直到页面加载到 webview 中,然后启用它,以便滚动到顶部工作正常。
webview.setWebViewClient(new WebViewClient(){ @Override public void onPageFinished(WebView view, String url) { button.setEnabled(true); } } );