Any android event when keyboard slide out

后端 未结 3 508
悲&欢浪女
悲&欢浪女 2020-12-17 04:12

Is there any intent/event that i can listen to when user slide out the keyboard on a phone with keyboard?

Thank you.

3条回答
  •  悲&欢浪女
    2020-12-17 04:28

    Yes in your Activity override onConfigurationChanged()

    public void onConfigurationChanged(Configuration newConfig){
       if(newConfig.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_NO){
           //slideout detected
       }
    }
    

提交回复
热议问题