Possible Duplicate:
How can I open android browser with specified POST parameters?
I have set up a Button that will link to Google Checkout, however, I need to POST a whole lot of required data (not GET) so I can't use the usual Intent method.
//open the browser
Uri u = Uri.parse(uri.toString());
Intent i = new Intent(Intent.ACTION_VIEW, u);
startActivity(i);
How do I post data to a URL by pressing a button and then load the result into a web browser? In this case it will be the Google Checkout webpage.