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

[android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread Matt West
Hey, Check your syntax in you manifest. You have closed the activity tag in the wrong place. Your code: <-<-<-< This is your problem android:configChanges="orientation" Should be: <-<-<-< The android:configChanges should be inside tag tag. Make the ch

[android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread Matt West
Your syntax in the manifest is wrong. Your code shows; android:configChanges="orientation" It should be: You've closed the activty tag before the 'android:configChanges' line. -- You received this message because you are subscribed to the Google Groups "Android Developers