I'm trying to paste a string from my application to a website.
My application looks as following: one EditText and one Button. My button opens a website with an open text box.
<input name="FreeTextBox" type="text" id="FreeTextBox" style="width:64px;">
this is the text box on the website
My application's EditText id is et2
which is then the variable klass
in java.
klassen = klass.getText().toString();
The klass variable is then made into a string called klassen
When I click my button I open a website and then I want my application to automatically enter whatever I wrote in my EditText into the FreeTextBox on the website.
Please give me advice on how to do this. This is my first application so I could really use some help.
Thanks in advance