How to download POST data from Android Java, then download it in a web browser?

Possible duplicate:
How to open an Android browser with the specified POST settings?

I installed a button that will link to Google Checkout, however I need to POST a whole range of required data (not GET), so I can not 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 to send data to a URL by clicking a button and then uploading the result to a web browser? In this case, it will be the Google Checkout webpage.

+4
source share
1 answer

See the following Android Webview POST link for more information. You will need to use the web view in your layout, you can send the data, and then upload the results to the web view.

Another that may be useful - although not related to web browsing: Android JSON HttpClient to send data to a PHP server with HttpResponse

0
source

All Articles