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 を入力して [移動] ボタンをクリックすると、Web ビューで必要なページが読み込まれますが、Web ビュー内のリンクをクリックすると、テキスト ボックスであるアドレス バーが正確な URL で更新されません。どうすればこれを行うことができますか?
Googleで解決策が得られないさまざまな方法をすべて試しています-おそらくキーワードが間違っています。:( - これに関するヘルプは素晴らしいでしょう。
ありがとう!
You need to Override onPageFinished method
@Override public void onPageFinished(WebView view, String url) { urlEditText.setText(url, TextView.BufferType.NORMAL); super.onPageFinished(view, url); }