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.
私はこの記事を見ました:- Java クラスから Web ビュー html へのデータの受け渡し
Android アプリケーションの WebView で、Android 関数から html ファイルに文字列を返すことはできますか。
このような文字列を返す Java クラスを実装できます。
public class Bar { public String foo() { return "bla-bla-bla"; } }
その後、それを addJavascriptInterface メソッドに渡します。
webView.addJavascriptInterface(new Bar(), "bar");
これで JavaScript オブジェクト "bar" ができました:
alert(bar.foo());