2010-08-05 171 views
13

我正在用軟鍵盤上的完成按鈕掙扎。我無法獲得軟鍵盤完成按鍵來隱藏鍵盤。從另一個按鈕,它完美的作品與在Android中完成鍵盤上隱藏軟鍵盤?

imm.hideSoftInputFromWindow(editText.getApplicationWindowToken(), 0);

但onKeyListener不起作用我想要的方式。當我點擊editText時,軟鍵盤顯示出來,其內容從字符中清除。

感謝收聽!

main.xml中:

<EditText 
    android:id="@+id/answer" 
    android:layout_gravity="center_horizontal" android:textSize="36px" 
    android:inputType="phone" 
    android:minWidth="60dp" android:maxWidth="60dp" 
/> 

Java文件:

private EditText editText; 
//... 
editText = (EditText)findViewById(R.id.answer); 
editText.setOnClickListener(onKeyboard); 
editText.setOnKeyListener(onSoftKeyboardDonePress); 
//... 

// method not working: 
private View.OnKeyListener onSoftKeyboardDonePress=new View.OnKeyListener() 
{ 
    public boolean onKey(View v, int keyCode, KeyEvent event) 
    { 
     if (event.getKeyCode() == KeyEvent.FLAG_EDITOR_ACTION) 
     { 
      // code to hide the soft keyboard 
      imm = (InputMethodManager) getSystemService(
       Context.INPUT_METHOD_SERVICE); 
      imm.hideSoftInputFromWindow(editText.getApplicationWindowToken(), 0); 
     } 
     return false; 
    } 
}; 

private View.OnClickListener onKeyboard=new View.OnClickListener() 
{ 
    public void onClick(View v) 
    { 
     editText.setText(""); 
    } 
}; 

使用按鈕(在相同的Java檔案)工作方法:

private View.OnClickListener onDone=new View.OnClickListener() 
{ 
    public void onClick(View v) 
    { 
     //.... 
     // code to hide the soft keyboard 
     imm = (InputMethodManager) getSystemService(
      Context.INPUT_METHOD_SERVICE); 
     imm.hideSoftInputFromWindow(editText.getApplicationWindowToken(), 0); 
    } 
}; 

編輯:當我按下鍵號「9」時,鍵盤隱藏。這很奇怪。

回答

25

使用Android:imeOptions = 「actionDone」,這樣的:

<EditText 
    ... 
    android:imeOptions="actionDone" /> 
+2

工程就像一個魅力! :) – 2015-12-10 13:38:36

+2

不適合我,在所謂的Android編程上真的很奇怪。 – 2016-12-16 03:50:18

+1

當editext處於滾動視圖時,它會出現錯誤。 – 2017-06-16 14:07:41

19
InputMethodManager inputManager = (InputMethodManager) 
context.getSystemService(Context.INPUT_METHOD_SERVICE); 
inputManager.toggleSoftInput(0, 0); 

上下文就是你的活動。

+1

感謝您的努力!我將if語句更改爲if(event.getKeyCode()== KeyEvent.KEYCODE_ENTER),使其與xml屬性android:inputType =「phone」一起工作。我將保存您的答案,直到下一個軟鍵盤問題。 BR - – 2010-08-05 17:02:31

4

將if語句更改爲if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER)使其使用xml屬性android:inputType="phone"

1

你應該有)爲EditText上看看setOnEditorActionListener(:

設置一個特殊的監聽器當上了 文本視圖執行操作時被調用。當按下回車鍵時,或者當提供給IME的動作被用戶選擇時,這將被調用。

0

使用下面的代碼與android:imeOptions="actionDone"它爲我工作。

<EditText 
    android:id="@+id/et_switch_name"  
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:hint="Name" 
    android:imeOptions="actionDone"  
    android:inputType="textPersonName" />