Loading media/java/android/media/Ringtone.java +42 −40 Original line number Diff line number Diff line Loading @@ -504,16 +504,24 @@ public class Ringtone { } private boolean playFallbackRingtone() { if (mAudioManager.getStreamVolume(AudioAttributes.toLegacyStreamType(mAudioAttributes)) != 0) { int streamType = AudioAttributes.toLegacyStreamType(mAudioAttributes); if (mAudioManager.getStreamVolume(streamType) == 0) { return false; } int ringtoneType = RingtoneManager.getDefaultType(mUri); if (ringtoneType == -1 || RingtoneManager.getActualDefaultRingtoneUri(mContext, ringtoneType) != null) { if (ringtoneType != -1 && RingtoneManager.getActualDefaultRingtoneUri(mContext, ringtoneType) == null) { Log.w(TAG, "not playing fallback for " + mUri); return false; } // Default ringtone, try fallback ringtone. try { AssetFileDescriptor afd = mContext.getResources().openRawResourceFd( com.android.internal.R.raw.fallbackring); if (afd != null) { if (afd == null) { Log.e(TAG, "Could not load fallback ringtone"); return false; } mLocalPlayer = new MediaPlayer(); if (afd.getDeclaredLength() < 0) { mLocalPlayer.setDataSource(afd.getFileDescriptor()); Loading @@ -532,22 +540,16 @@ public class Ringtone { mLocalPlayer.prepare(); startLocalPlayer(); afd.close(); return true; } else { Log.e(TAG, "Could not load fallback ringtone"); } } catch (IOException ioe) { destroyLocalPlayer(); Log.e(TAG, "Failed to open fallback ringtone"); return false; } catch (NotFoundException nfe) { Log.e(TAG, "Fallback ringtone does not exist"); } } else { Log.w(TAG, "not playing fallback for " + mUri); } } return false; } return true; } void setTitle(String title) { mTitle = title; Loading Loading
media/java/android/media/Ringtone.java +42 −40 Original line number Diff line number Diff line Loading @@ -504,16 +504,24 @@ public class Ringtone { } private boolean playFallbackRingtone() { if (mAudioManager.getStreamVolume(AudioAttributes.toLegacyStreamType(mAudioAttributes)) != 0) { int streamType = AudioAttributes.toLegacyStreamType(mAudioAttributes); if (mAudioManager.getStreamVolume(streamType) == 0) { return false; } int ringtoneType = RingtoneManager.getDefaultType(mUri); if (ringtoneType == -1 || RingtoneManager.getActualDefaultRingtoneUri(mContext, ringtoneType) != null) { if (ringtoneType != -1 && RingtoneManager.getActualDefaultRingtoneUri(mContext, ringtoneType) == null) { Log.w(TAG, "not playing fallback for " + mUri); return false; } // Default ringtone, try fallback ringtone. try { AssetFileDescriptor afd = mContext.getResources().openRawResourceFd( com.android.internal.R.raw.fallbackring); if (afd != null) { if (afd == null) { Log.e(TAG, "Could not load fallback ringtone"); return false; } mLocalPlayer = new MediaPlayer(); if (afd.getDeclaredLength() < 0) { mLocalPlayer.setDataSource(afd.getFileDescriptor()); Loading @@ -532,22 +540,16 @@ public class Ringtone { mLocalPlayer.prepare(); startLocalPlayer(); afd.close(); return true; } else { Log.e(TAG, "Could not load fallback ringtone"); } } catch (IOException ioe) { destroyLocalPlayer(); Log.e(TAG, "Failed to open fallback ringtone"); return false; } catch (NotFoundException nfe) { Log.e(TAG, "Fallback ringtone does not exist"); } } else { Log.w(TAG, "not playing fallback for " + mUri); } } return false; } return true; } void setTitle(String title) { mTitle = title; Loading