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.
当我在文本框中键入 url 并单击 Go 按钮时,webview 会加载所需的页面,但是当我单击 webview 内的任何链接时,作为文本框的地址栏没有更新为确切的 url?我该怎么做呢?
我在谷歌上尝试各种不同的方法没有得到解决方案 - 可能关键词是错误的。:( - 这方面的帮助会很棒。
谢谢!
您需要重写 onPageFinished 方法
@Override public void onPageFinished(WebView view, String url) { urlEditText.setText(url, TextView.BufferType.NORMAL); super.onPageFinished(view, url); }