Re: Ang.: Re: [android-developers] Password protect an app

2011-08-29 Thread Jump
Thanks for the tip! But Pray doesn't work when switching between apps. For example, if you start a downloaded app from notification bar when pray is in the foreground and then go back, it won't show the password. This works with Dropbox. -- You received this message because you are subscribed

Re: Ang.: Re: [android-developers] Password protect an app

2011-08-29 Thread Matt West
You might want to look in to how prey does this in their android app. http://preyproject.com/ It looks as though they just launch a custom dialog from onCreate/onResume that contains an EditText for the password. I wouldn't have thought that this would be too difficult to replicate. -- You rece

Re: Ang.: Re: [android-developers] Password protect an app

2011-08-28 Thread Jump
I did not manage to do it in a satisfying way. I noticed that Dropbox app has password protection and it works as expected. Does anybody know how dropbox did it? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

Ang.: Re: [android-developers] Password protect an app

2011-07-02 Thread Jump
Ah, an inactivity timeout, seems like a good enough solution. Thank you guys! -- 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 ema

Re: [android-developers] Password protect an app

2011-07-02 Thread Mark Murphy
On Sat, Jul 2, 2011 at 1:03 PM, Jump wrote: > I want to password protect my app so that whenever any activity that is > owned by my app's process no longer is in the foreground and then comes back > into foreground there should be a "enter password" dialogue. > Is this possible? IMHO this is a po

Re: [android-developers] Password protect an app

2011-07-02 Thread Kostya Vasilyev
I wouldn't think it's hard to find - onStart or onResume seem pretty natural for this kind of thing. Combine it with some sort of timeout check, so the user can freely navigate the application once he logs in. -- Kostya Vasilyev 02.07.2011 21:04 пользователь "Jump" написал: > Hello > > I want to

[android-developers] Password protect an app

2011-07-02 Thread Jump
Hello I want to password protect my app so that whenever any activity that is owned by my app's process no longer is in the foreground and then comes back into foreground there should be a "enter password" dialogue. Is this possible? It's hard to find a place in code to show the dialogue due t