I have created a form and I have been able to save the details into my database but I want is to show the saved details into my TextView when user comes to the same activity. Here is the current code for of my Form:
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.emailsettings);
nameTU = (EditText) findViewById(R.id.text_username);
nameTP = (EditText) findViewById(R.id.text_password);
nameTO = (EditText) findViewById(R.id.text_to);
Bundle extras = getIntent().getExtras();
if (extras != null)
{
rowID = extras.getLong("row_id");
nameTU.setText(extras.getString("username"));
nameTP.setText(extras.getString("password"));
nameTO.setText(extras.getString("id_to"));
}
}
What I want is to show the saved data on page load in my text_username, text_password and text_to and all these are TextView.
Thanks.
