直播系統平臺搭建,控制鍵盤彈出收縮

zhibo系統開發發表於2021-11-03

直播系統平臺搭建,控制鍵盤彈出收縮實現的相關程式碼

彈出


InputMethodManager inputMethodManager = (InputMethodManager)this.getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);
//其中,showSoftInput方法第一個引數為指定的EditText的控制元件物件

收縮

InputMethodManager inputMethodManager = (InputMethodManager) this.getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(editText.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
//同上,editText也為你要收起鍵盤的那個EditText物件控制元件


以上就是直播系統平臺搭建,控制鍵盤彈出收縮實現的相關程式碼, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2840402/,如需轉載,請註明出處,否則將追究法律責任。

相關文章