0

一般来说,我对 Eclipse 和 Android 活动比较陌生。我正在制作一个处理来电的android应用程序。但是当我模拟通话时,它不会播放任何声音,并且在声音设置中,唯一的选项是“静音”。我想为模拟器设置铃声。有人可以帮我吗?如果有帮助,我正在使用带有 4.1 平台的 Eclipse Juno。

4

1 回答 1

0

如果您可以使用广播服务来了解电话的状态:RING、HANGUP 等。

基本上以播放铃声为例:

{

Context context = this; //or getBaseContext() depend where you execute the code
Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
Ringtone r = RingtoneManager.getRingtone(context, notification);
r.play();

}
于 2012-11-11T05:53:12.243 回答