增加按键音

在frameworks/base/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java中的
interceptKeyBeforeDispatching函数中增加以下:

if(!down)
{
                AudioManager am = (AudioManager)mContext.getSystemService(Context.AUDIO_SERVICE);
                am.playSoundEffect(SoundEffectConstants.CLICK);

}

你可能感兴趣的:(android,framework)