On Fri, Aug 5, 2011 at 1:13 AM, uday kiran jandhyala
wrote:
> I'm trying to explore to somehow launch Browser app, to perform a HTTP
> POST, instead of a GET request.
AFAIK, this is not possible.
--
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commons
Greetings!
It is clear that the Android Browser app can be launched from any
other application, through an Intent as :
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri data = Uri.parse("http://www.google.com";);
intent.setData(data);
startActivity(intent);
This would however internally perfor
2 matches
Mail list logo