Home | History | Annotate | Download | only in preference

Lines Matching refs:streamType

96     public SeekBarVolumizer(Context context, int streamType, Uri defaultUri, Callback callback) {
107 mStreamType = streamType;
436 int streamType = intent.getIntExtra(AudioManager.EXTRA_VOLUME_STREAM_TYPE, -1);
438 updateVolumeSlider(streamType
447 int streamType = intent.getIntExtra(AudioManager.EXTRA_VOLUME_STREAM_TYPE, -1);
448 int streamVolume = mAudioManager.getStreamVolume(streamType);
449 updateVolumeSlider(streamType, streamVolume);
465 private void updateVolumeSlider(int streamType, int streamValue) {
466 final boolean streamMatch = mNotificationOrRing ? isNotificationOrRing(streamType)
467 : (streamType == mStreamType);