How to do visible EditText Data on Activity change
Posted
by
user1249134
on Stack Overflow
See other posts from Stack Overflow
or by user1249134
Published on 2012-03-09T10:38:01Z
Indexed on
2012/04/08
11:29 UTC
Read the original article
Hit count: 163
android
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 ...
© Stack Overflow or respective owner