Merge "Fix bug 2594126 Do not crash when ViewRoot is trying to play a UI sound. This CL doesn't fix why mView can be null in the first place, but prevents a crash when mView is null and a UI sound is to be played." into froyo
This commit is contained in:
committed by
Android (Google) Code Review
commit
b5fa4dff0c
@ -2580,6 +2580,7 @@ public final class ViewRoot extends Handler implements ViewParent,
|
||||
public void playSoundEffect(int effectId) {
|
||||
checkThread();
|
||||
|
||||
try {
|
||||
final AudioManager audioManager = getAudioManager();
|
||||
|
||||
switch (effectId) {
|
||||
@ -2602,6 +2603,11 @@ public final class ViewRoot extends Handler implements ViewParent,
|
||||
throw new IllegalArgumentException("unknown effect id " + effectId +
|
||||
" not defined in " + SoundEffectConstants.class.getCanonicalName());
|
||||
}
|
||||
} catch (IllegalStateException e) {
|
||||
// Exception thrown by getAudioManager() when mView is null
|
||||
Log.e(TAG, "FATAL EXCEPTION when attempting to play sound effect: " + e);
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user