If you want to use intents to have your pages then: 1) You can use intent.putextra to transfer the data from the fields and store it in the next activity. 2) Save the content of each page in SharedPreferences or a database.
If you use the second method then the data will already be in the database. If you use the first one the at the end you will need to save all the data you have been passing around through Intents. There may be more ways with intents of which I can not think right now. Thanks On Wed, Sep 7, 2011 at 10:33 AM, ksmobilejava <[email protected]>wrote: > > Thanks all for help. > The intended from has multiple fields (around 25-30 fields) so it can > not be fitted in single screen. > As all agrees , user doesn't like to scroll , I want to divide fields > into multiple pages (~5 fields per page) and navigate through them > from user friendly perspective. > > I read about Intents , but Intents make call to other activity from > currently running activity. > Conceptually form filling is single activity only it need to be > divided into pages, so here , is it appropriate to use intents ? > > Further , the information entered in all pages need to be stored (as a > record , may be in xml file) at the end of form filling. > what is proper way to approach this requirement, Pls share. > Thanks in advance. > > On Sep 6, 9:24 pm, Logesh rajendren <[email protected]> wrote: > > my advice is to shrink your UI so that it fits into a single page. > because > > Users dont like to use scrolls. Design your form in such a way if its > > feasible . > > > > > > > > > > > > > > > > On Tue, Sep 6, 2011 at 6:03 AM, ksmobilejava <[email protected]> > wrote: > > > Hello , > > > I am new to android paltform. > > > How to navigate through multi page form application? how to handle > > > next and back button click event? > > > My point of confusion is that, form filling is single activity , then > > > how to display multiple pages of the form and how to navigate back and > > > forth from pages in that activity? > > > > > -- > > > You received this message because you are subscribed to the Google > > > Groups "Android Developers" group. > > > To post to this group, send email to > [email protected] > > > To unsubscribe from this group, send email to > > > [email protected] > > > For more options, visit this group at > > >http://groups.google.com/group/android-developers?hl=en > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- ------------------ Raghav Sood CEO/Founder/Owner/Dictator/Tyrant at Appaholics (Basically all titles required to have complete control) http://www.raghavsood.com/ https://market.android.com/developer?pub=Appaholics http://www.appaholics.in/ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

