Exemplo n.º 1
0
 /**
  * 开启铃声
  *
  * @param remoteContact
  */
 public synchronized void startRing(String remoteContact) {
   if (!mRinger.isRinging()) {
     // 播放默认铃声
     mRinger.ring(remoteContact, "content://settings/system/ringtone");
   } else {
     LogUtils.d(TAG, "铃声已响....");
   }
 }
Exemplo n.º 2
0
 public synchronized void stopRing() {
   if (mRinger.isRinging()) {
     mRinger.stopRing();
   }
 }