Java Code Examples for android.provider.Settings#ACTION_SOUND_SETTINGS

The following examples show how to use android.provider.Settings#ACTION_SOUND_SETTINGS . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HeadsUpVolumePanel.java    From Noyze with Apache License 2.0 5 votes vote down vote up
void openMusic() {
    hide();
    if (hasAlbumArt) {
        launchMusicApp();
    } else {
        Intent volumeSettings = new Intent(Settings.ACTION_SOUND_SETTINGS);
        startActivity(volumeSettings);
    }
}
 
Example 2
Source File: UberVolumePanel.java    From Noyze with Apache License 2.0 5 votes vote down vote up
void openMusic() {
    hide();
    if (hasAlbumArt) {
        launchMusicApp();
    } else {
        Intent volumeSettings = new Intent(Settings.ACTION_SOUND_SETTINGS);
        startActivity(volumeSettings);
    }
}
 
Example 3
Source File: HeadsUpVolumePanel.java    From Noyze with Apache License 2.0 5 votes vote down vote up
void openMusic() {
    hide();
    if (hasAlbumArt) {
        launchMusicApp();
    } else {
        Intent volumeSettings = new Intent(Settings.ACTION_SOUND_SETTINGS);
        startActivity(volumeSettings);
    }
}
 
Example 4
Source File: UberVolumePanel.java    From Noyze with Apache License 2.0 5 votes vote down vote up
void openMusic() {
    hide();
    if (hasAlbumArt) {
        launchMusicApp();
    } else {
        Intent volumeSettings = new Intent(Settings.ACTION_SOUND_SETTINGS);
        startActivity(volumeSettings);
    }
}
 
Example 5
Source File: ParanoidVolumePanel.java    From Noyze with Apache License 2.0 4 votes vote down vote up
protected void launchSoundSettings() {
    hide();
    Intent volumeSettings = new Intent(Settings.ACTION_SOUND_SETTINGS);
    startActivity(volumeSettings);
}
 
Example 6
Source File: ParanoidVolumePanel.java    From Noyze with Apache License 2.0 4 votes vote down vote up
protected void launchSoundSettings() {
    hide();
    Intent volumeSettings = new Intent(Settings.ACTION_SOUND_SETTINGS);
    startActivity(volumeSettings);
}