I’m testing via USB debugging on my Galaxy Tab 8.9 and whenver I rotate the device the application closes itself.
How can i fix this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I was having the same problem but Yaron Uliel’s comment helped me out.
Just make sure that on yout “AndroidManifest.xml”, the ‘activity’ node has the attribute:
android:configChanges=”orientation|keyboardHidden”
Like this:
In my particlar case, I was missing “android:” part before “configChanges=” (it’s an error on Adobe’s tutorial I believe)
Hope it helps!