android提示音

来源:互联网 发布:libreoffice软件 编辑:程序博客网 时间:2024/05/18 08:07
Aroidnd提示音

一、系统自带
// TYPE_RINGTONE 电话铃// TYPE_NOTIFICATION 提示音(响一下)// TYPE_ALARM 闹钟音Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);final Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);r.play();

二、自定义声音
RingtoneManager manager = new RingtoneManager(this);manager.setType(RingtoneManager.TYPE_NOTIFICATION);//自定义声音 音频文件放在应用的ram文件夹中Uri uri = Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.call);Ringtone r = manager.getRingtone(ServiceKDS.this, uri);r.play();

2 0