Lines Matching refs:findViewById
276 final ViewGroup viewGroup = (ViewGroup) findViewById(R.id.contentSoundEffects); in onCreate()
318 findViewById(R.id.vILayout).setOnTouchListener(new OnTouchListener() { in onCreate()
329 final SeekBar seekbar = (SeekBar) findViewById(R.id.vIStrengthSeekBar); in onCreate()
365 final Switch sw = (Switch) findViewById(R.id.vIStrengthToggle); in onCreate()
380 findViewById(R.id.bBLayout).setOnTouchListener(new OnTouchListener() { in onCreate()
391 final SeekBar seekbar = (SeekBar) findViewById(R.id.bBStrengthSeekBar); in onCreate()
437 equalizerSpinnerInit((Spinner)findViewById(R.id.eqSpinner)); in onCreate()
438 equalizerBandsInit(findViewById(R.id.eqcontainer)); in onCreate()
447 reverbSpinnerInit((Spinner)findViewById(R.id.prSpinner)); in onCreate()
452 ((TextView) findViewById(R.id.noEffectsTextView)).setVisibility(View.VISIBLE); in onCreate()
578 setEnabledAllChildren((ViewGroup) findViewById(R.id.contentSoundEffects), isEnabled); in updateUI()
582 SeekBar bar = (SeekBar) findViewById(R.id.vIStrengthSeekBar); in updateUI()
583 Switch sw = (Switch) findViewById(R.id.vIStrengthToggle); in updateUI()
599 ((SeekBar) findViewById(R.id.bBStrengthSeekBar)).setProgress(ControlPanelEffect in updateUI()
610 ((Spinner)findViewById(R.id.prSpinner)).setSelection(reverb); in updateUI()
621 ((TextView) findViewById(R.id.vIStrengthText)).setEnabled( in updateUIHeadset()
623 ((SeekBar) findViewById(R.id.vIStrengthSeekBar)).setEnabled( in updateUIHeadset()
625 findViewById(R.id.vILayout).setEnabled(!mIsHeadsetOn || !mVirtualizerIsHeadphoneOnly); in updateUIHeadset()
626 ((TextView) findViewById(R.id.bBStrengthText)).setEnabled(mIsHeadsetOn); in updateUIHeadset()
627 ((SeekBar) findViewById(R.id.bBStrengthSeekBar)).setEnabled(mIsHeadsetOn); in updateUIHeadset()
628 findViewById(R.id.bBLayout).setEnabled(!mIsHeadsetOn); in updateUIHeadset()
658 ((TextView) eqcontainer.findViewById(EQViewElementIds[band][0])).setText( in equalizerBandsInit()
661 .findViewById(EQViewElementIds[band][1]); in equalizerBandsInit()
669 eqcontainer.findViewById(EQViewElementIds[band][0]).setVisibility(View.GONE); in equalizerBandsInit()
671 eqcontainer.findViewById(EQViewElementIds[band][1]).setVisibility(View.GONE); in equalizerBandsInit()
674 TextView tv = (TextView) findViewById(R.id.maxLevelText); in equalizerBandsInit()
676 tv = (TextView) findViewById(R.id.centerLevelText); in equalizerBandsInit()
678 tv = (TextView) findViewById(R.id.minLevelText); in equalizerBandsInit()
730 ((Spinner)findViewById(R.id.eqSpinner)).setSelection(mEQPresetUserPos); in onStartTrackingTouch()