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.
重複の可能性: Android の WebView への HTTP POST 応答
私の Android アプリケーションでは、Web ビューを使用して HTML、CSS でビュー パーツを使用したいと考えています。この Web ビュー API で jquery ajax を使用して http 投稿を行うことは可能ですか。
あなたはそれを行うことができます
WebView webview = findviewbyid(R.id.webview); byte[] post = EncodingUtils.getBytes("postvar=value", "BASE64"); webview.postUrl("http://www.mysite.com/post", post);