問題描述
有沒有什么方法可以在 Android 上監聽音量變化的事件,而不只是接管音量按鈕?
Is there any way to listen to the event of volume change on Android, without just taking over the volume buttons?
我發現唯一有效的是 這里,但只有在音量控制消失后才能使用.
The only thing I've found that works is here, but it works only after the volume control has disappeared.
并非所有設備都有音量按鈕,我需要在音量變化發生時立即捕捉它們,而不是在音量對話框消失后捕捉.
Not all devices have volume buttons, and I need to capture the volume changes as soon as they occur, and not after the volume dialog is gone.
推薦答案
更好,可以注冊一個ContentObserver
,如下:
Better, you can register a ContentObserver
as follows:
getApplicationContext().getContentResolver().registerContentObserver(android.provider.Settings.System.CONTENT_URI, true, new ContentObserver(){...} );
您的 ContentObserver 可能如下所示:
Your ContentObserver might look like this:
public class SettingsContentObserver extends ContentObserver {
private AudioManager audioManager;
public SettingsContentObserver(Context context, Handler handler) {
super(handler);
audioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
}
@Override
public boolean deliverSelfNotifications() {
return false;
}
@Override
public void onChange(boolean selfChange) {
int currentVolume = audioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
Log.d(TAG, "Volume now " + currentVolume);
}
}
完成后:
getApplicationContext().getContentResolver().unregisterContentObserver(mContentObserver);
但請注意 - 如果快速按下大量按鈕,有時通知似乎會延遲.
One caution, though - sometimes the notifications seem to be delayed if there are lots of button presses quickly.
這篇關于在 Android 上監聽音量變化事件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!