正在使用android:configChanges="keyboardHidden|orientation"
在縱向和橫向模式之間切換。但是,當用戶打開softkeyboard in portrait
和更改爲landscape keyboard should hide or dissappera
但它沒有發生。android:configChanges =「keyboardHidden | orientation」發行Android
1
A
回答
2
如果您正在攔截orientation
而不覆蓋Activity
中的public void onConfigurationChanged(Configuration newConfig)
,則鍵盤保持打開狀態是正常的。
您可以
重寫此方法重置顯示
或避免攔截
orientation
讓Activity
重新啓動(在這種情況下,你的Activity
將重新初始化並onCreate()
將會再次調用)
+0
方向我明白,但隱藏鍵盤的用途是什麼? – Harinder
0
我不確定,但我認爲你需要編寫keyboardHidden | orientation | portrait(或landscape)。
+0
這裏有
相關問題
- 1. 工作? android:configChanges =「keyboardHidden | orientation | screenSize + onConfigurationChanged
- 2. 「orientation | keyboardHidden」not calling onConfigurationChanged
- 3. 如何在代碼中編寫'android:configChanges =「keyboardHidden」'?
- 4. Android Orientation phonegap版
- 5. 指定android:configChanges =「orientation」時保存狀態_before_ orientation change
- 6. 如何正確處理android:configChanges =「orientation | screenSize」
- 7. android:configChanges =「orientation」不能與分段一起工作
- 8. android:configChanges =「orientation | screenSize」改變我的佈局外觀
- 9. orientation Android
- 10. 沒有預期的效果使用android:configChanges =「orientation」
- 11. 設置targetSdkVersion =「13」會導致活動忽略android:configChanges =「orientation」標誌
- 12. android display orientation
- 13. 在AndroidManifest.xml中缺少android:configChanges的adActivity
- 14. Android:'orientation'和'screenLayout'有什麼區別?
- 15. VideoView&Fullscreen&Orientation changes - Android
- 16. 動態更改android:configChanges
- 17. 如何在應用程序中一起使用layout-land和android:configChanges = orientation | screenSize?
- 18. android:configChanges =「orientation」標誌在包含半透明活動時會影響ACTIVITY STACK嗎?
- 19. Android 2.3.3&4.1.2 android:configChanges用於檢測方向變化
- 20. android設置Orientation鎖定方向
- 21. CSS Orientation風景問題android
- 22. AsyncTask with ProgressDialog vs orientation orientation
- 23. 如何以編程方式更改android:configChanges?
- 24. 「keyboardHidden |方向|屏幕尺寸」 onConfigurationChanged不叫
- 25. AdMob中使用Android的:無法解析的android:configChanges在清單
- 26. Chromecast Orientation
- 27. 即使指定了android:configChanges,應用程序也會重新創建?
- 28. 爲什麼沒有爲android:configChanges =「locale」調用onConfigurationchanged?
- 29. configChanges =「orientation」在Galaxy Nexus上不會觸發
- 30. 錯誤字符串類型不允許在清單文件中android:configChanges
方向我明白,但隱藏鍵盤的用途是什麼? – Harinder