Hello.
There is an application with two EditText elements and a button. By clicking on the button, you need to transfer all the text entered in this field to the field on the website and click the button on this page.
Update
API no. The site is not mine, it belongs to a mobile operator. Yes, I try to do it through the Http post.
In the source of the site I see "<input id="phoneCode" class="txt" type="text" name="code" maxlength="3" value="" />" .
Ie I need to write something like
"List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1); nameValuePairs.add(new BasicNameValuePair("phoneCode.value", CodeP));"?