ユーザーがOnEditorActionListener
class DoneOnEditorActionListener implements 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;
}
を使用して[完了]ボタンを押したときに完了]ボタンを表示するには、キーボードが必要な場合は、あなたがあなたのEditText
<EditText android:text="EditText" android:layout_width="fill_parent"
android:id="@+id/editText1" android:layout_height="wrap_content"
android:imeOptions="actionDone"/>
でこれを定義する必要があります。次にキャッチすることができます
}
あなたと同意@WarrenFaith – Lucifer
IMEアクションを設定するだけでキーボードに完了ボタンが表示され、聴くことができますキーストーリーを持っている人のために。私はキーボードがすでにそれを可能にしているときに、これを行う独自のボタンを作成することに強くお勧めします。 – FoamyGuy