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

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 Studio 音乐播放器歌曲设置铃声,需要经过以下步骤: 1. 在 `AndroidManifest.xml` 文件添加以下权限: ``` <uses-permission android:name="android.permission.WRITE_SETTINGS" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> ``` 2. 在代码添加以下方法,用于将歌曲设置铃声: ``` private void setRingtone(String filePath) { File file = new File(filePath); ContentValues values = new ContentValues(); values.put(MediaStore.MediaColumns.DATA, file.getAbsolutePath()); values.put(MediaStore.MediaColumns.TITLE, file.getName()); values.put(MediaStore.MediaColumns.MIME_TYPE, "audio/*"); values.put(MediaStore.Audio.Media.ARTIST, "artist"); values.put(MediaStore.Audio.Media.IS_RINGTONE, true); values.put(MediaStore.Audio.Media.IS_NOTIFICATION, false); values.put(MediaStore.Audio.Media.IS_ALARM, false); values.put(MediaStore.Audio.Media.IS_MUSIC, false); Uri uri = MediaStore.Audio.Media.getContentUriForPath(file.getAbsolutePath()); Uri newUri = getContentResolver().insert(uri, values); RingtoneManager.setActualDefaultRingtoneUri(this, RingtoneManager.TYPE_RINGTONE, newUri); } ``` 这个方法接受一个音乐文件的路径作为参数,然后将该文件设置为系统铃声。 3. 在播放器界面添加一个“设置铃声”的按钮,点击该按钮时调用上面的方法即可。 ``` button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { setRingtone(filePath); Toast.makeText(MainActivity.this, "已设置铃声!", Toast.LENGTH_SHORT).show(); } }); ``` 这里的 `filePath` 是音乐文件的路径,可以根据实际情况进行修改。 完成上述步骤后,用户可以在播放器界面点击“设置铃声”按钮将当前播放的歌曲设置铃声。注意,这个方法需要 WRITE_SETTINGS 权限,因此在 Android 6.0 及以上版本需要动态申请权限。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值