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); }