Ses tahtası uygulaması yapıyorum ve hangi menü öğesine tıklandığınıza bağlı olarak bir zil sesi veya bildirim olarak bir ses çaldırmaya çalışıyorum. Zil sesi şu anda zil sesi menüsünde varsayılan zil sesi olarak görünüyor, ancak bir telefon geldiğinde çalmıyor. Neyi yanlış yapıyorum? Kodum aşağıda listelenmiştir.Android'de oynamak için zil sesimi nasıl alabilirim?
public boolean saveas(int ressound,String file,String typesound){
byte[] buffer=null;
InputStream fIn = getBaseContext().getResources().openRawResource(ressound);
int size=0;
try {
size = fIn.available();
buffer = new byte[size];
fIn.read(buffer);
fIn.close();
} catch (IOException e) {
// TODO Auto-generated catch block
return false;
}
String path="/sdcard/media/audio/ringtones/";
String filename=file+".ogg";
boolean exists = (new File(path)).exists();
if (!exists){new File(path).mkdirs();}
FileOutputStream save;
try {
save = new FileOutputStream(path+filename);
save.write(buffer);
save.flush();
save.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
return false;
} catch (IOException e) {
// TODO Auto-generated catch block
return false;
}
sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://"+path+filename)));
File k = new File(path, filename);
ContentValues values = new ContentValues();
values.put(MediaStore.MediaColumns.DATA, k.getAbsolutePath());
values.put(MediaStore.MediaColumns.TITLE, file);
values.put(MediaStore.MediaColumns.MIME_TYPE, "audio/ogg");
values.put(MediaStore.Audio.Media.ARTIST, "douchebag");
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
this.getContentResolver().insert(MediaStore.Audio.Media.getContentUriForPath(k.getAbsolutePath()), values);
//set ringtone
Uri ringtoneUri = Uri.parse(path+filename);
if(typesound=="ringtone")
RingtoneManager.setActualDefaultRingtoneUri(this, RingtoneManager.TYPE_RINGTONE, ringtoneUri);
return true;
}
Hata mı alıyorsunuz? Gördüğünüz davranış nedir? Ayrıca, uygulamanızın beklendiği gibi çalışmayacaksa bir istisna yakaladığınızda giriş yapmayı deneyin. – CrackerJack9