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.
Androidのバージョンやサウンドへのパスを知らなくても、キーボードのデフォルトのサウンドを再生することは可能です。
使用しているAndroidのバージョンによって音が変わるようです。
private void PlayKeyPress (Context c){ AudioManager am=(AudioManager) c.getSystemService(Context.AUDIO_SERVICE); am.playSoundEffect(AudioManager.FX_KEYPRESS_STANDARD, (float) 0.5); }