Re: [android-developers] Activities and Intents

2011-02-16 Thread Danielle Murkerson
Ok thanks for your thoughts...I'll have to look into those two new methods from that first site and see if I can get something to work. On Wed, Feb 16, 2011 at 11:07 AM, TreKing wrote: > On Wed, Feb 16, 2011 at 9:47 AM, Danielle Murkerson < > dmurkerso...@gmail.com> wrote: > >> Do you know how I

Re: [android-developers] Activities and Intents

2011-02-16 Thread TreKing
On Wed, Feb 16, 2011 at 9:47 AM, Danielle Murkerson wrote: > Do you know how I would save the state of a MediaPlayer object. Never used it, so no, not really. However, as it's just extends Object, you'd have to manage it's state yourself, I would think. The first option with the two functions yo

Re: [android-developers] Activities and Intents

2011-02-16 Thread Danielle Murkerson
Ok thanks...I do have a question about saving the state of my activities as I know I will have to do this anyway based on the responses I'm seeing about orientation changes. Do you know how I would save the state of a MediaPlayer object...I've seen a few examples on these sites about saving object

Re: [android-developers] Activities and Intents

2011-02-16 Thread TreKing
On Wed, Feb 16, 2011 at 8:59 AM, Danielle Murkerson wrote: > So I guess my question is...is there a better way to get the behavior I > want visually along with the behavior I want functionally? Thanks for the detailed explanation. I have not used Tabs, so I can't speak much to what you're doing.

Re: [android-developers] Activities and Intents

2011-02-16 Thread Danielle Murkerson
Ok, so I found this article on the web: http://www.kidfloor.com/gamma-point/content/android-how-have-multiple-activities-under-single-tab-tabactivity which seemed like what I was trying to do. Basically, I've got a tabbed interface where each tab contains an activity, and a few of these activitie

Re: [android-developers] Activities and Intents

2011-02-15 Thread TreKing
On Tue, Feb 15, 2011 at 2:31 PM, DanielleM wrote: > I'm using an intent flag "FLAG_ACTIVITY_CLEAR_TOP" so that a child activity > can be placed on top of the parent activity without covering up my tab > navigation. > You may want to explain this. I'm not sure what you mean by this and I'm thinki

[android-developers] Activities and Intents

2011-02-15 Thread DanielleM
Hello all: I'm using an intent flag "FLAG_ACTIVITY_CLEAR_TOP" so that a child activity can be placed on top of the parent activity without covering up my tab navigation. However, when I return from the child activity, my parent activity is re-created as a new instance, which is not the behavior i