[android-developers] Re: Popup Windows

2008-10-09 Thread hackbod
Note the dialogs and popup windows are very different -- dialogs are separate windows whose coordinate space is within the overall screen; popup windows are attached to the window they came from, so their coordinate space is relative to that window and they are z-ordered along with the window they

[android-developers] Re: Popup Windows

2008-10-09 Thread Josh Roesslein
Thanks alot! That seems to work just fine. On Thu, Oct 9, 2008 at 12:17 PM, Xolotl Loki <[EMAIL PROTECTED]> wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > > Anyone have any experience with pop ups? > > I'll keep playing with it and if I figure it out I'll be sure to share > > it h

[android-developers] Re: Popup Windows

2008-10-09 Thread Xolotl Loki
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > Anyone have any experience with pop ups? > I'll keep playing with it and if I figure it out I'll be sure to share > it here for future developers. > The Activity class has specific methods for managing dialogs: http://code.google.com/android/refe

[android-developers] Re: Popup Windows

2008-10-09 Thread Josh Roesslein
Anyone have any experience with pop ups? I'll keep playing with it and if I figure it out I'll be sure to share it here for future developers. On Wed, Oct 8, 2008 at 10:46 PM, JoshTheCoder <[EMAIL PROTECTED]> wrote: > > I'm trying to display a pop window over the current displayed view. > For som