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 one activity in which i enter some values and save it in the data base by calling webservise on save button.

basically i have two buttons in my app one for save and one for edit previous record . when clicking edit i want to open same activity that i use for save but by clicking edit i want show the previously entered value in activity after modifing that by user then back to data base, but i want to use same activity for edit as well

How can i achive this the same activity in edit mode as well ?

Thanks in advance.

share|improve this question
see a similar question stackoverflow.com/questions/4503458/… – Amit Mar 2 '12 at 6:36
kindly share your code that you have now. – Triode Mar 2 '12 at 6:36
basically i have two buttons in my app one for save and one for edit previous record . when clicking edit i want to open same activity that i use for save but by clicking edit i want show the previously entered value in activity after modifing that by user then back to data base, but i want to use same activity for edit as well – Sachin Gurnani Mar 2 '12 at 6:41
1  
Thas wasn't code, it was explanation – Ruuhkis Mar 2 '12 at 6:48

1 Answer

when clicked on save, open the database insert the values and close the database again open the database and read the values and display them by clearing the already shown values

When clicked on edit,open the database edit the values and close the database again open the database and read the values and display them by clearing the already shown values

then u will be in the same screen

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.