How do I convert a string into an integer?
I have a textbox I have the user enter a number into:
EditText et = (EditText) findViewById(R.id.entry1);
String hello = et.getText().toString();
And the value is assigned to the …
I want to save a file to the internal storage by getting the text inputted from EditText. Then I want the same file to return the inputted text in String form and save it to another String which is to …
I have a string called CurrentString and is in the form of something like this
"Fruit: they taste good". I would like to split up the CurrentString using the : as the delimiter.So that way the word "Fruit" will be …