Search code examples
androidalarmmanagerclocktelephonymanager

How to ring bell while the phone is on phone in Android?


I am making a Clock APP,there is a select in setting that whether remind althrough the phone is on phone!

I get the "CallState" : int callState =mTelephonyManager.getCallState();

and get "isRemindInCall" by user's select

and <uses-permission android:name="android.permission.READ_PHONE_STATE"/>

then:if(callState==TelephonyManager.CALL_STATE_IDLE||isRemindInCall){ ...... }

but not work!


Solution

  • you need to define mediaplayer to stream_music not notification nor alarm. To define this write this line after declaring your media player:

    mp.setAudioStreamType(AudioManager.STREAM_MUSIC);