[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 taisa.san...@gmail.comwrote:

 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 problem. My
 application can work with more than one level of activities, or rather,
 Activity A can start acitivity B that can start Activity C, all them with
 the button showing in the bottom. When I press Back, I need activity C to
 finish and the focus to go back to B, but as I'm using an ActivityGroup, it
 does not work.

 Is there another way to do that?

 Thanks,

 Taísa


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[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 http://www.brainyquote.com/quotes/authors/w/walt_disney.html
- I love Mickey Mouse more than any woman I have ever known.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[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 sujay.coold...@gmail.com
wrote:
 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 http://www.brainyquote.com/quotes/authors/w/walt_disney.html
 - I love Mickey Mouse more than any woman I have ever known.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[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 justin.shapc...@gmail.comwrote:


 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 sujay.coold...@gmail.com
 wrote:
  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 
 http://www.brainyquote.com/quotes/authors/w/walt_disney.html
  - I love Mickey Mouse more than any woman I have ever known.
 



-- 
Taísa Cristina Costa dos Santos
Computer Engineer
Brazil, SP

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[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 along those lines to
have all of these things be in one activity?

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Warescription: Three Android Books, Plus Updates, $35/Year

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---