Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が必要なのは:
a
'a'
65
そのようなものはすでに利用可能ですか?
デフォルトでは、キー コードをイベント ハンドラーに渡す onKeyDown リスナーを使用できます。
public boolean onKeyDown(int keyCode, KeyEvent event) { Lod.d("ON KEY DOWN", "KEY CODE: " + keyCode); return super.onKeyDown(keyCode, event); }
イベント ハンドラーはbooleanの戻り値の型を必要とするため、ここで値を返すことを忘れないでください。