Re: [android-developers] Invoking Browser through an Intent, to perform HTTP POST

2011-08-05 Thread Mark Murphy
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

[android-developers] Invoking Browser through an Intent, to perform HTTP POST

2011-08-05 Thread uday kiran jandhyala
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