Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
where u are retrieve user details from database post relevant code – ρяσѕρєя K Dec 6 '12 at 9:14
I know how to fetch the details from database but i am not sure to post the retrieved data in my textview and thats why i have posted this question. Thats my query for fetching data: public Cursor getEmailDetails() { return database.query("details", new String[] {"username", "password", "id_to"}, null, null, null, "username", "password", "id_to"); } – Ali Abid Dec 6 '12 at 9:17
because your code for showing data in TextView's is right that's why i'm saying post relevant code from which you are sending data to detail activity – ρяσѕρєя K Dec 6 '12 at 9:19
@AliAbid You are displaying above field in TextView or EditText? – Dipak Keshariya Dec 6 '12 at 9:20
Sorry you mean Data From Database to TextView or Data to TextView from DB? – Ali Abid Dec 6 '12 at 9:22
show 11 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.