在我的Android应用程序中,我想使用Web View中的查看部分HTML,CSS。可以在此webview API中使用jquery ajax进行http post。
答案 0 :(得分:1)
你可以用
完成WebView webview = findviewbyid(R.id.webview);
byte[] post = EncodingUtils.getBytes("postvar=value", "BASE64");
webview.postUrl("http://www.mysite.com/post", post);