Is there any intent/event that i can listen to when user slide out the keyboard on a phone with keyboard?
Thank you.
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.
in your Manifest file, add this to your activity definition:
android:configChanges="keyboard|keyboardHidden"and in your Activity java file, override the method
onConfigurationChanged:when a keyboard event fires off in this activity, this method will be called and you can do whatever you want.