码迷,mamicode.com
首页 > 移动开发 > 详细

android 在音乐播放器中设置一首歌曲为来电铃声,设置不起作用

时间:2014-10-29 09:13:18      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:android   io   ar   java   for   sp   on   log   cti   

AudioProfile,情景模式,多卡设置铃声
系统开启Multi_ringtone_support。进入菜单--音乐--歌曲列表--长按一首歌曲选择设为手机铃声,提示已成功设置,但是进入设置中情景模式查看,仍然是默认铃声。打电话后铃声还为默认铃声。
修改:
AudioProfileService.java
mRingtoneObserver = new ContentObserver(new Handler())函数里面的
case GENERAL:
case OUTDOOR:
                        if (mExt.shouldSyncGeneralRingtoneToOutdoor()) {
                            // If ringtone has been changed and the active profile is general
                            // or outdoor profile, synchronize the current system ringtone
                            // to both profiles.
                            if (isPassiveChange && (!mResetFlag)) {
                                String generalKey = mPredefinedKeys.get(Scenario.GENERAL.ordinal());
                                String outdoorKey = mPredefinedKeys.get(Scenario.OUTDOOR.ordinal());
                                getProfileState(generalKey, mSimId).mRingerStream = systemUri;
                                getProfileState(outdoorKey, mSimId).mRingerStream = systemUri;
                                persistRingtoneUriToDatabase(generalKey, AudioProfileManager.TYPE_RINGTONE, mSimId, systemUri);
                                persistRingtoneUriToDatabase(outdoorKey, AudioProfileManager.TYPE_RINGTONE, mSimId, systemUri);
                                Log.d(TAG, "Ringtone changed by other app in non-silent "
                                        + "profile, synchronize to active profile: new uri = " + systemUri);
                            } else {
                                Log.d(TAG, "Ringtone changed by itself, do nothing!");
                            }
                            break;
                        }
改为如下的样子
                    case GENERAL:
                    case OUTDOOR:
                        if (mExt.shouldSyncGeneralRingtoneToOutdoor()) {
                            // If ringtone has been changed and the active profile is general
                            // or outdoor profile, synchronize the current system ringtone
                            // to both profiles.
                            if (isPassiveChange && (!mResetFlag)) {
                                //M: for setringtoneformprofile or from 3rd app
                                if (FeatureOption.MTK_MULTISIM_RINGTONE_SUPPORT) {
                                    // add to get  selected SIM id                     
                                    List<SIMInfo> simList = SIMInfo.getInsertedSIMList(mContext);
                                    int simNum = simList.size();
                                    Log.d(TAG, "simList.size() == " + simNum);                        
                                    long simId = -1;
                                    for (int i = 0; i < simNum; i++) {
                                        simId = simList.get(i).mSimId;
                                        
                                        String generalKey = mPredefinedKeys.get(Scenario.GENERAL.ordinal());
                                        String outdoorKey = mPredefinedKeys.get(Scenario.OUTDOOR.ordinal());
                                        getProfileState(generalKey, simId).mRingerStream = systemUri;
                                        getProfileState(outdoorKey, simId).mRingerStream = systemUri;
                                        persistRingtoneUriToDatabase(generalKey, AudioProfileManager.TYPE_RINGTONE, simId, systemUri);
                                        persistRingtoneUriToDatabase(outdoorKey, AudioProfileManager.TYPE_RINGTONE, simId, systemUri);
                                        Log.d(TAG, "Ringtone changed by other app in non-silent "
                                                + "profile, synchronize to active profile: new uri = " + systemUri);
                                        Log.d(TAG,"mRingtoneObserver simId " + simId);
                                    }
                                }else {
                                    String generalKey = mPredefinedKeys.get(Scenario.GENERAL.ordinal());
                                    String outdoorKey = mPredefinedKeys.get(Scenario.OUTDOOR.ordinal());
                                    getProfileState(generalKey, mSimId).mRingerStream = systemUri;
                                    getProfileState(outdoorKey, mSimId).mRingerStream = systemUri;
                                    persistRingtoneUriToDatabase(generalKey, AudioProfileManager.TYPE_RINGTONE, mSimId, systemUri);
                                    persistRingtoneUriToDatabase(outdoorKey, AudioProfileManager.TYPE_RINGTONE, mSimId, systemUri);
                                    Log.d(TAG, "Ringtone changed by other app in non-silent "
                                            + "profile, synchronize to active profile: new uri = " + systemUri);
                                }
                                
                          } else {
                                Log.d(TAG, "Ringtone changed by itself, do nothing!");
                           }
                            break;
                        }
同样的,对于custom case 也要处理
Case CUSTOM:
if (isPassiveChange && (!mResetFlag )){
activeState.mRingerStream = systemUri;
persistRingtoneUriToDatabase(mActiveProfileKey,AudioProfileManager.TYPE_RINGTONE,mSimId,systemUri);
Log.d(…);
} else {
Log.d(…);
}
break;
改为,
Case CUSTOM:
if (isPassiveChange && (!mResetFlag )){
    if (FeatureOption.MTK_MULTISIM_RINGTONE_SUPPORT){
// add to get  selected SIM id                     
                                    List<SIMInfo> simList = SIMInfo.getInsertedSIMList(mContext);
                                    int simNum = simList.size();
                                    Log.d(TAG, "simList.size() == " + simNum);                        
                                    long simId = -1;
                                    for (int i = 0; i < simNum; i++) {
                                        simId = simList.get(i).mSimId;
                            persistRingtoneUriToDatabase(mActiveProfileKey,AudioProfileManager.TYPE_RINGTONE, simId,systemUri);
}
} else {
activeState.mRingerStream = systemUri;
persistRingtoneUriToDatabase(mActiveProfileKey,AudioProfileManager.TYPE_RINGTONE,mSimId,systemUri);
Log.d(…);
}
} else {
Log.d(…);
}
break;

android 在音乐播放器中设置一首歌曲为来电铃声,设置不起作用

标签:android   io   ar   java   for   sp   on   log   cti   

原文地址:http://blog.csdn.net/sergeycao/article/details/40581021

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!