[android-developers] Re: Always-showing view among activities

2009-05-25 Thread Mark Murphy
Taísa Cristina wrote: > Thanks for answering, > but I need to show the button and handle its events even when an > activity transition [the middle one] is happening. I am unconvinced what you want to do is possible using separate activities. Have you considered using ViewFlipper or something alo

[android-developers] Re: Always-showing view among activities

2009-05-25 Thread Taísa Cristina
Thanks for answering, but I need to show the button and handle its events even when an activity transition [the middle one] is happening. On Mon, May 25, 2009 at 1:03 PM, nEx.Software wrote: > > What I would do is create a base activity and a base layout that has > your "content container" and th

[android-developers] Re: Always-showing view among activities

2009-05-25 Thread nEx.Software
What I would do is create a base activity and a base layout that has your "content container" and the button at the bottom. Then in each of your other activities extend that base activity and inflate your layout into the content container. On May 25, 5:53 am, Sujay Krishna Suresh wrote: > We'd b

[android-developers] Re: Always-showing view among activities

2009-05-25 Thread Sujay Krishna Suresh
We'd be able to understand ur prob better if u could post ur code snippet that's responsible for this... -- Regards, Sujay Walt Disney - "I love Mickey Mouse more than any woman I have ever known." --~--~-~--~~

[android-developers] Re: Always-showing view among activities

2009-05-25 Thread Taísa Cristina
Any idea? Taísa On Thu, May 21, 2009 at 10:21 AM, Taísa Cristina wrote: > Hi all! > > Is there a way to have a view "always-showing" between activities? > I say, I need a button to be always appearing on the bottom of the screen. > > I could get it working with an ActivityGroup, but I got a prob