you can use the function putExtra() while creating a new intent, and use
getExtra() after the new intent has been created. that is assuming, you are
using intents for forms.

//make new intent code
//call new intent code
putExtra("key name", data)

and where the new intent is picked up, in the called class, just use
getExtra("key name")

that should do it.




On Thu, Apr 22, 2010 at 6:23 PM, wahib haq <wahib.t...@gmail.com> wrote:

> I myself is a newbie so if someone has better sugesstion than do share it.
> I would love to increase my knowledge.
>
> regards,
> wahib
>
>
>
>
> On Thu, Apr 22, 2010 at 8:46 AM, wahib haq <wahib.t...@gmail.com> wrote:
>
>> Salam dear.
>>
>> You can take the data from one form to other by passing bundles with
>> intents. You can take data from 1st form and receive in 2nd. Then take 1st
>> data + 2nd data to 3rd form and then send subsequent responses back.
>>
>> This tutorial will surely help you out.
>>
>> http://www.remwebdevelopment.com/dev/a33/Passing-Bundles-Around-Activities.html
>>
>> best of luck.
>>
>> wahib
>>
>>
>>
>>
>> On Thu, Apr 22, 2010 at 8:30 AM, Mohammad Siddiqui <
>> siddiqui.m...@gmail.com> wrote:
>>
>>> Hi everyone,
>>>
>>> i have therre consecutive form ,after filling the form one i press the
>>> next button on the first form to go
>>> to the second form then prees the next button to go to the third
>>> form.from third form i have a button to
>>> post the data on a specific url.the problem is that how can get the
>>> first and second form data on the
>>> last form
>>>
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Beginners" group.
>>>
>>> NEW! Try asking and tagging your question on Stack Overflow at
>>> http://stackoverflow.com/questions/tagged/android
>>>
>>> To unsubscribe from this group, send email to
>>> android-beginners+unsubscr...@googlegroups.com<android-beginners%2bunsubscr...@googlegroups.com>
>>> For more options, visit this group at
>>> http://groups.google.com/group/android-beginners?hl=en
>>>
>>
>>
>>
>> --
>> Wahib-ul-haq
>>
>> 3rd year Communications Engineering Student,
>> NUST, Pakistan.
>> Microsoft Student Partner
>> follow me on twitter @wahibhaq
>>
>>
>>
>>
>
>
> --
> Wahib-ul-haq
>
> 3rd year Communications Engineering Student,
> NUST, Pakistan.
> Microsoft Student Partner
> follow me on twitter @wahibhaq
>
>
>
>  --
> You received this message because you are subscribed to the Google
> Groups "Android Beginners" group.
>
> NEW! Try asking and tagging your question on Stack Overflow at
> http://stackoverflow.com/questions/tagged/android
>
> To unsubscribe from this group, send email to
> android-beginners+unsubscr...@googlegroups.com<android-beginners%2bunsubscr...@googlegroups.com>
> For more options, visit this group at
> http://groups.google.com/group/android-beginners?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Reply via email to