2013-10-18 14 views
13

ユーザーがソフトキーボードの「完了」を押すと、キーボードが閉じます。特定の条件が満たされている場合(パスワードが正しく入力された場合など)にのみ閉じるようにします。キーボードの終了時にキーボードを閉じる方法

これは、(「完了」ボタンが押されたときのために、リスナーを設定します)私のコードです:

final EditText et = (EditText)findViewById(R.id.et); 
et.setOnEditorActionListener(new OnEditorActionListener() 
{   
    @Override 
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) 
    { 
     if(actionId==EditorInfo.IME_ACTION_DONE) 
     { 
     if (et.getText().toString().equals(password)) // they entered correct 
     { 
      // log them in 
     } 
     else 
     { 
      // bring up the keyboard 
      getWindow().setSoftInputMode(
      WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE); 

      Toast.makeText(Main.this, "Incorrect.", Toast.LENGTH_SHORT).show(); 
     } 
     } 
     return false; 
    } 
}); 

私はそれが前にこのコードを実行されるため、これが動作しない理由は、おそらくであることを認識実際にはソフトキーボードを単独で閉じるのですが、そのために私は助けが必要です。私は別の方法を知らない。

の答えのための可能なトピックがで作業することができます

activityRootView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { 

とそういったことが、私は確かに知りません。


SOLUTION:

EditText et = (EditText)findViewById(R.id.et); 
et.setOnEditorActionListener(new OnEditorActionListener() 
{   
    @Override 
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) 
    { 
    if(actionId==EditorInfo.IME_ACTION_DONE) 
    { 
     if (et.getText().toString().equals(password)) // they entered correct 
     { 
      // log them in 
      return false; // close the keyboard 
     } 
     else 
     { 
      Toast.makeText(Main.this, "Incorrect.", Toast.LENGTH_SHORT).show(); 
      return true; // keep the keyboard up 
     } 
    } 
    // if you don't have the return statements in the if structure above, you 
    // could put return true; here to always keep the keyboard up when the "DONE" 
    // action is pressed. But with the return statements above, it doesn't matter 
    return false; // or return true 
    } 
}); 

答えて

17

あなたonEditorAction方法から、あなたのリターンtrueは、アクションを再処理することになるだろうされていない場合。この場合、アクションがEditorInfo.IME_ACTION_DONEのときにtrueを返してキーボードを非表示にすることができます。

+3

偉大な答えです。そのメソッドが返すと思われるものに関するドキュメントは見つかりませんでした。 –

関連する問題