獲取默認鈴聲Uri/ Uri String |
Uri sound = RingtoneManager.getDefaultUri(type); |
獲取鈴聲Uri/ Uri String |
String getRingtoneUriPath(int type,int pos){ //workaround to create mCusor inside manager, or raise a segamentation fault while invoking getRingtoneUri, below methods same too Cursor cursor = manager.getCursor(); Uri uri = manager.getRingtoneUri(pos); |
獲取鈴聲標題 | List<String> getRingtoneTitleList(int type){ List<String> resArr = new ArrayList<String>(); |
獲取指定類型的 指定條目鈴聲操作類 |
Ringtone getRingtone(int type,int pos){ RingtoneManager manager = new RingtoneManager(mContext); |
獲取指定類型所有 鈴聲操作列表 |
List<Ringtone> getRingtoneList(int type){ |