[android-developers] Multiple MapActivity instances in a task

2012-10-04 Thread Partho Bhowmick
I have an app with a number of activities, one of which subclasses MapActivity. It has a single MapView. For reasons I won't go into, I have situations where I may need more than instance of this MapActivity to be launched. I know the Maps API docs says Only one MapActivity is supported per

Re: [android-developers] Multiple MapActivity

2011-01-13 Thread Ankur Avlani
I can start the MapActivitiy in a separate process as well?. What are the cons, if I start it in a separate process?. The one that I see is, accessing data across these multiple processes. Is it recommended to start a separate process, for multiple map activities.? Thanks, Ankur On Tue, Jan

Re: [android-developers] Multiple MapActivity

2011-01-13 Thread TreKing
On Thu, Jan 13, 2011 at 9:37 PM, Ankur Avlani ankuravl...@gmail.com wrote: Is it recommended to start a separate process, for multiple map activities.? Probably not. I think you're over-complicating the matter. Read my previous post.

Re: [android-developers] Multiple MapActivity

2011-01-13 Thread Ankur Avlani
I understand your previous post. Probably I am asking a silly question:, I have 2 separate Activities, It already has some views, now I need MapActivity in both these Activities. How can I get Map in both the Activities. I hope you understood what I mean to say. Thanks, Ankur. On Thu, Jan

Re: [android-developers] Multiple MapActivity

2011-01-13 Thread TreKing
On Thu, Jan 13, 2011 at 9:51 PM, Ankur Avlani ankuravl...@gmail.com wrote: How can I get Map in both the Activities. I hope you understood what I mean to say. I do, I guess you're not understanding what *I* mean to say. You cannot have multiple MapActivities - so make one. Got it? OK, now,

[android-developers] Multiple MapActivity

2011-01-11 Thread Ankur Avlani
Hi, My application has multiple MapViews, so each classes extends MapActivity. Now i read that if you have more that one MapActivity in your app, it will result in undesired output. My question is, is there a way to create MapView without MapActivity. Or does someone know any workaround for

Re: [android-developers] Multiple MapActivity

2011-01-11 Thread TreKing
On Tue, Jan 11, 2011 at 1:54 PM, Ankur Avlani ankuravl...@gmail.com wrote: My question is, is there a way to create MapView without MapActivity. Nope. Or does someone know any workaround for multiple MapActivities. Instead of having mutliple MapActivities, have multiple MapModes or