I need to go to a website from my android mobile, this website accept some POST values.
When I do the same from my computer, is a form with php:
<form name="form1" method="post" action="scripts/pago.php">
I can open a website with this code:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);
It opens the browser without problem, but, how can I add the post values?
Thank you in advance.