このコードでkeyboard
を左右に無効にしようとしていますが、viewPager
を左右に押すとbutton
ページャの状態を変更します。ViewPagerでキーボードから左右の矢印を無効または非表示にする方法
edComment.setOnEditorActionListener(
new EditText.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_FLAG_NAVIGATE_PREVIOUS
|| actionId == EditorInfo.IME_FLAG_NAVIGATE_NEXT
|| actionId == EditorInfo.IME_ACTION_PREVIOUS
|| actionId == EditorInfo.IME_ACTION_NEXT
) {
return false;
}
// Return true if you have consumed the action, else false.
return false;
}
});
のようにやって非表示にしたり、無効にされていませんが、あなたはのEditTextフィールドにinputTypeを変更しようとしましたか? – AbuQauod
はい、私は変更します。 –