Another option is to extend the Application class and add the property
you want to persist between activities.

You'll need to specify your application class in the
AndroidManafest.xml
<application android:icon="@drawable/icon" android:label="@string/
app_name" android:name="com.some.package.MyApplication">

After doing this you can call getApplication() from within your
activity and cast it to your sub class

((MyApplication)getApplication()).getMyCustomPropery();

Hope this helps.


On Jul 4, 5:34 am, Thomas Frick <[email protected]> wrote:
> Dear All,
>
> I have two activities.
> Activity A creates an object and stores some data in this object.
> After that, activity B ist started. In activity B I have to use the
> object created in activity A.
>
> What is the best way to pass the object from activity A to B?
>
> I think it is not possible to store an object in the
> SharedPreferences, isn't it?
>
> Is it a good way to call the object in activity A directly from
> activity B?
>
> Thanks for your help.
> Thomas

-- 
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

Reply via email to