从SharedPreferences将铃声加载到Mediaplayer中

时间:2016-11-23 02:58:18

标签: java android sharedpreferences uri

我担心我对URI的工作方式有一些根本的误解。我试图将此警报音保存到我的SharedPreferences文件中,然后以相同的方式恢复它。

我认为问题是我如何解析Uri,我不是特别知道如何检索URI

我已尝试将以下内容存储到我的共享偏好中。

/etc/init.d

//the displayed name of the ringtone
RingtoneManager.getRingtone(this, uri).getTitle(this)

每个字符串恢复正常,但我不知道我需要解析的实际密钥来检索我正在寻找的警报音。

获得如下偏好

data.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI)

1 个答案:

答案 0 :(得分:0)

我找到的解决方案使用Uri.toString()将Uri保存到首选项。使用Uri.parse(preferenceString)

重新加载铃声

onActivityresult,我立即将uri字符串保存到我的首选项

    /** For selecting an alarmtone */
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (resultCode == RESULT_OK) {
            switch (requestCode) {
                case ALARM_URI:
                    uri = data.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI);
                    TextView mTextView = (TextView) findViewById(R.id.alarmTone);
                    mTextView.setText(RingtoneManager.getRingtone(this, uri).getTitle(this));

                    mp = new MediaPlayer();
                    mp = MediaPlayer.create(getApplicationContext(), uri);

                    mp.setLooping(true);

                    SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
                    SharedPreferences.Editor editor = settings.edit();
                    editor.putString(ALARM_TONE, uri.toString());
                    editor.commit();

                    break;

                default:
                    break;
            }
        }
    }

在此处开始加载URI

       if (mSettings.contains(ALARM_TONE)){
            alarmTone = mSettings.getString(ALARM_TONE, null);
            if (alarmTone != null) {
                uri = Uri.parse(alarmTone);
                //update textview to loaded alarm tone
                TextView t = (TextView) findViewById(R.id.alarmTone);
                t.setText(RingtoneManager.getRingtone(this, uri).getTitle(this));

                mp = MediaPlayer.create(getApplicationContext(), uri);
            }
        }