当前位置:编程学习 > wap >>

Android APP中如何打开浏览器 并以POST方式传递参数

   需要在android 应用程序中启动浏览器打开网页,同时向打开的网页中以post的方式传递参数,各位有什么思路吗?
    网上只有浏览器打开网页的思路:
    public void onClick(View v) {
Intent intent = new Intent();        
intent.setAction("android.intent.action.VIEW");    
Uri content_url = Uri.parse("http://localhost:8888/test.jsp"); 
intent.setData(content_url); 
startActivity(intent);

}

android 浏览器 --------------------编程问答--------------------   WebView  方式可以实现POST提交  不过是程序内部的,外部浏览器方式有时做过吗?
补充:移动开发 ,  Android
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,