我正在做我的第一个应用程序:我想放置一个按钮以将 .mp3 设置为铃声,一切正常,Logcat 一个 Eclipse 不会显示任何类型的错误,但是当我拨打电话时(在模拟器中和真正的手机)它没有声音!此外,当我转到“音乐”应用程序并尝试播放这些铃声(我在“最近添加”中找到它们)时,它会显示:“对不起,播放器不支持音频文件类型”。
我做错了什么?
这是我的代码:
setringtone.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Toast msg = Toast.makeText(TonosSet.this, "Sound set as ringtone!", Toast.LENGTH_LONG);
msg.show();
File k = new File("/sdcard/media/ringtone", "song_file.mp3");
Uri mUri = Uri.parse("android.resource://com.app/"+R.raw.song_file);
ContentResolver mCr = getContentResolver();
AssetFileDescriptor soundFile;
try {
soundFile= mCr.openAssetFileDescriptor(mUri, "r");
} catch (FileNotFoundException e) {
soundFile=null;
}
try {
InputStream ins = TonosSet.this .getResources().openRawResource (R.raw.song_file);
byte[] buffer = new byte[ins.available()];
ins.read(buffer);
ins.close();
String filename = Environment.getExternalStorageDirectory().toString()+File.separator+R.raw.song_file;
FileOutputStream fos = new FileOutputStream(filename);
fos.write(buffer);
fos.close();
} catch (IOException io) {
}
ContentValues values = new ContentValues();
values.put(MediaStore.MediaColumns.DATA, k.getAbsolutePath());
values.put(MediaStore.MediaColumns.TITLE, "Name sound");
values.put(MediaStore.MediaColumns.MIME_TYPE, "audio/mp3");
values.put(MediaStore.Audio.Media.ARTIST, "Artist");
values.put(MediaStore.Audio.Media.IS_RINGTONE, true);
values.put(MediaStore.Audio.Media.IS_NOTIFICATION, true);
values.put(MediaStore.Audio.Media.IS_ALARM, true);
values.put(MediaStore.Audio.Media.IS_MUSIC, false);
//Insert it into the database
Uri uri = MediaStore.Audio.Media.getContentUriForPath(k.getAbsolutePath());
getContentResolver().delete(uri, MediaStore.MediaColumns.DATA + "=\"" + k.getAbsolutePath() + "\"", null);
Uri newUri = getContentResolver().insert(uri, values);
RingtoneManager.setActualDefaultRingtoneUri(
TonosSet.this,
RingtoneManager.TYPE_NOTIFICATION,
newUri);
}
});
请帮帮我,我不知道该怎么办,我一直在寻找解决方案大约 5 个小时,但我不能 =(