A Checkbox found in the Ringer Volume settings that allows you
to set a separate Notification volume and incoming call volume
Is there a way to Check/Uncheck the Check box for Notification volume programmatically.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is a hidden but editable preference in the
Settings.Systemclass that determines whether the notification volume is tied to the ringer volume.It’s called
NOTIFICATIONS_USE_RING_VOLUMEand is marked in the source code as hidden, with the well-commented reason that it will be removed from the platform at some point in the future.The setting has an integer value of
0if ringer and notification volumes are independent;1otherwise.