I'd like to know when the audio mode (as returned by AudioManager.getMode()) has changed. This is so that I can disable functionality in my app while the mode is not MODE_NORMAL. Obviously I can poll but that isn't battery friendly and a waste of CPU.
There is a broadcast intent when a call comes in, but that isn't usable since it also tells you the incoming phone number and I don't want those permissions for my app. It is likely the mode change may have happened with the user switching to a different app in which case my Activity would know, but there are many other scenarios under which the audio mode could change and I just wouldn't know.
I can't use the AudioFocus stuff from 2.2 as I need to support 1.6 onwards.
Edit: The kind of functionality I want to stop includes shake detection and various timers. I want to enter a dormant mode on audio mode being non-normal and become active again on MODE_NORMAL.