Lines Matching refs:findViewById
266 final ViewGroup viewGroup = (ViewGroup) findViewById(R.id.contentSoundEffects); in onCreate()
308 findViewById(R.id.vILayout).setOnTouchListener(new OnTouchListener() { in onCreate()
319 final SeekBar seekbar = (SeekBar) findViewById(R.id.vIStrengthSeekBar); in onCreate()
355 final Switch sw = (Switch) findViewById(R.id.vIStrengthToggle); in onCreate()
370 findViewById(R.id.bBLayout).setOnTouchListener(new OnTouchListener() { in onCreate()
381 final SeekBar seekbar = (SeekBar) findViewById(R.id.bBStrengthSeekBar); in onCreate()
427 equalizerSpinnerInit((Spinner)findViewById(R.id.eqSpinner)); in onCreate()
428 equalizerBandsInit(findViewById(R.id.eqcontainer)); in onCreate()
437 reverbSpinnerInit((Spinner)findViewById(R.id.prSpinner)); in onCreate()
442 ((TextView) findViewById(R.id.noEffectsTextView)).setVisibility(View.VISIBLE); in onCreate()
568 setEnabledAllChildren((ViewGroup) findViewById(R.id.contentSoundEffects), isEnabled); in updateUI()
572 SeekBar bar = (SeekBar) findViewById(R.id.vIStrengthSeekBar); in updateUI()
573 Switch sw = (Switch) findViewById(R.id.vIStrengthToggle); in updateUI()
589 ((SeekBar) findViewById(R.id.bBStrengthSeekBar)).setProgress(ControlPanelEffect in updateUI()
600 ((Spinner)findViewById(R.id.prSpinner)).setSelection(reverb); in updateUI()
611 ((TextView) findViewById(R.id.vIStrengthText)).setEnabled( in updateUIHeadset()
613 ((SeekBar) findViewById(R.id.vIStrengthSeekBar)).setEnabled( in updateUIHeadset()
615 findViewById(R.id.vILayout).setEnabled(!mIsHeadsetOn || !mVirtualizerIsHeadphoneOnly); in updateUIHeadset()
616 ((TextView) findViewById(R.id.bBStrengthText)).setEnabled(mIsHeadsetOn); in updateUIHeadset()
617 ((SeekBar) findViewById(R.id.bBStrengthSeekBar)).setEnabled(mIsHeadsetOn); in updateUIHeadset()
618 findViewById(R.id.bBLayout).setEnabled(!mIsHeadsetOn); in updateUIHeadset()
648 ((TextView) eqcontainer.findViewById(EQViewElementIds[band][0])).setText( in equalizerBandsInit()
651 .findViewById(EQViewElementIds[band][1]); in equalizerBandsInit()
659 eqcontainer.findViewById(EQViewElementIds[band][0]).setVisibility(View.GONE); in equalizerBandsInit()
661 eqcontainer.findViewById(EQViewElementIds[band][1]).setVisibility(View.GONE); in equalizerBandsInit()
665 TextView tv = (TextView) findViewById(R.id.maxLevelText); in equalizerBandsInit()
667 tv = (TextView) findViewById(R.id.centerLevelText); in equalizerBandsInit()
669 tv = (TextView) findViewById(R.id.minLevelText); in equalizerBandsInit()
721 ((Spinner)findViewById(R.id.eqSpinner)).setSelection(mEQPresetUserPos); in onStartTrackingTouch()