如何访问Android的默认哔声?

时间:2011-06-24 00:24:25

标签: java android beep

我想按一下按钮发出哔声,表示已按下。我想知道如何使用默认的android哔声(比如调整铃声音量时),而不是导入我自己的mp3音乐文件或使用ToneGenerator?

4 个答案:

答案 0 :(得分:75)

  

...使用默认的android beep声音(就像调整时一样)   铃声音量)...

在我的Cyanogen 7 Nexus One和我的旧库存T-Mobile Pulse Mini(后者从内存中),据我所知,这正是音量变化时的默认哔声:

     final ToneGenerator tg = new ToneGenerator(AudioManager.STREAM_NOTIFICATION, 100);
     tg.startTone(ToneGenerator.TONE_PROP_BEEP);

您似乎要求ToneGenerator的替代方案,但我认为它会在两行中为您提供您想要的内容。

以下是我尝试的其他一些可能ToneGenerator声音不匹配的声音(前两个可能有用作音量蜂​​鸣音的替代声音):

     // Double beeps:     tg.startTone(ToneGenerator.TONE_PROP_ACK);
     // Double beeps:     tg.startTone(ToneGenerator.TONE_PROP_BEEP2);
     // Sounds all wrong: tg.startTone(ToneGenerator.TONE_CDMA_KEYPAD_VOLUME_KEY_LITE);

答案 1 :(得分:72)

public void playSound(Context context) throws IllegalArgumentException, 
                                              SecurityException, 
                                              IllegalStateException,
                                              IOException {

    Uri soundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    MediaPlayer mMediaPlayer = new MediaPlayer();
    mMediaPlayer.setDataSource(context, soundUri);
    final AudioManager audioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);

    if (audioManager.getStreamVolume(AudioManager.STREAM_ALARM) != 0) {
        mMediaPlayer.setAudioStreamType(AudioManager.STREAM_ALARM);
        // Uncomment the following line if you aim to play it repeatedly
        // mMediaPlayer.setLooping(true);
        mMediaPlayer.prepare();
        mMediaPlayer.start();
    }
}

我找到了另一个答案:

try {
    Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);
    r.play();
} catch (Exception e) {
    e.printStackTrace();
}

信用额转到https://stackoverflow.com/a/9622040/737925

答案 2 :(得分:1)

简单的方法是使用Tone Generator类的实例:

    //declaration
    ToneGenerator toneG;
    //using any where`
    if(val>=taux_max)
    {
        taux_text.setTextColor(warnning_col);
        toneG.startTone(ToneGenerator.TONE_CDMA_ALERT_CALL_GUARD, 200); //200 is duration in ms
    }

答案 3 :(得分:1)

您可以通过ToneGenerator类访问Android的默认beeb声音。

import android.media.AudioManager;
import android.media.ToneGenerator;
ToneGenerator toneGenerator = new ToneGenerator(AudioManager.STREAM_MUSIC, 200);
toneGenerator.startTone(ToneGenerator.TONE_CDMA_EMERGENCY_RINGBACK);

有关其发音的更多信息:https://developer.android.com/reference/android/media/ToneGeneratorhttps://www.youtube.com/watch?v=HVu7K9W1_BM