Android中判断是不是有声音在播放
发布网友
发布时间:2022-04-29 00:33
我来回答
共2个回答
热心网友
时间:2022-06-26 12:39
要是用到了MediaPlayer类,可以使用其isPlaying()判断是否有声音。
热心网友
时间:2022-06-26 12:39
boolean isFmActive() {
final AudioManager am = (AudioManager)mContext.getSystemService(Context.AUDIO_SERVICE);
if (am == null) {
Log.w(TAG, "isFmActive: couldn't get AudioManager reference");
return false;
}
return am.isFmActive();
}
可以试一试