Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 軟鍵盤點擊Done隱藏軟鍵盤

Android 軟鍵盤點擊Done隱藏軟鍵盤

編輯:關於Android編程

 

正文

 

 

public TextView mTextView;
mTextView.setOnEditorActionListener(new EditText.OnEditorActionListener(){
   @Override
   public boolean onEditorAction(TextView v, int actionId , KeyEvent event) {
      if (actionId == EditorInfo.IME_ACTION_DONE) { 
               InputMethodManager imm = (InputMethodManager)v.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); 
               imm.hideSoftInputFromWindow(v.getWindowToken(), 0); 
        //隱藏軟鍵盤
               return true; 
           } 
    return false;
   }});


 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved