How to do visible EditText Data on Activity change
- by user1249134
HellO friends i am having edit text in my program and if i am writing some thing on there and if i am clciking on other option which will move to anothe activity and when i am coming back to same page the data of my edit text is clearing i dont want to clear data if i move on another page can any body tell me how to do it ..i am doing it by writing below code..
if(PresetQuestion.value=="true")
{
String note1=note.getText().toString();
note.setText(note1);
}
but its not woring i thing i am not doing correctly ...