Set Ringer Mode to Normal

RINGER_MODE_NORMAL was added in API Level 1
Ringer mode that may be audible and may vibrate. It will be audible if the volume before changing out of this mode was audible. It will vibrate if the vibrate setting is on.

1. Initialize an AudioManager Variable named myAudioManager.

2. In the MainActivity.java file, add the following code the onCreate method. This will set the ringer to normal, which may be either audible or vibrate.

myAudioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL);

3. Compile and run!

Next Recommended Article: Set Ringer to Vibrate

Resources:
http://developer.android.com/reference/android/media/AudioManager.html#RINGER_MODE_NORMAL