• Home
  • Raw
  • Download

Lines Matching refs:findViewById

276         final ViewGroup viewGroup = (ViewGroup) findViewById(R.id.contentSoundEffects);  in onCreate()
279 findViewById(R.id.bBStrengthText).setLabelFor(R.id.bBStrengthSeekBar); in onCreate()
280 findViewById(R.id.vIStrengthText).setLabelFor(R.id.vIStrengthSeekBar); in onCreate()
322 findViewById(R.id.vILayout).setOnTouchListener(new OnTouchListener() { in onCreate()
333 final SeekBar seekbar = (SeekBar) findViewById(R.id.vIStrengthSeekBar); in onCreate()
369 final Switch sw = (Switch) findViewById(R.id.vIStrengthToggle); in onCreate()
384 findViewById(R.id.bBLayout).setOnTouchListener(new OnTouchListener() { in onCreate()
395 final SeekBar seekbar = (SeekBar) findViewById(R.id.bBStrengthSeekBar); in onCreate()
441 equalizerSpinnerInit((Spinner)findViewById(R.id.eqSpinner)); in onCreate()
442 equalizerBandsInit(findViewById(R.id.eqcontainer)); in onCreate()
451 reverbSpinnerInit((Spinner)findViewById(R.id.prSpinner)); in onCreate()
466 ((TextView) findViewById(R.id.noEffectsTextView)).setVisibility(View.VISIBLE); in onCreate()
586 setEnabledAllChildren((ViewGroup) findViewById(R.id.contentSoundEffects), isEnabled); in updateUI()
590 SeekBar bar = (SeekBar) findViewById(R.id.vIStrengthSeekBar); in updateUI()
591 Switch sw = (Switch) findViewById(R.id.vIStrengthToggle); in updateUI()
607 ((SeekBar) findViewById(R.id.bBStrengthSeekBar)).setProgress(ControlPanelEffect in updateUI()
618 ((Spinner)findViewById(R.id.prSpinner)).setSelection(reverb); in updateUI()
629 ((TextView) findViewById(R.id.vIStrengthText)).setEnabled( in updateUIHeadset()
631 ((SeekBar) findViewById(R.id.vIStrengthSeekBar)).setEnabled( in updateUIHeadset()
633 findViewById(R.id.vILayout).setEnabled(!mIsHeadsetOn || !mVirtualizerIsHeadphoneOnly); in updateUIHeadset()
634 ((TextView) findViewById(R.id.bBStrengthText)).setEnabled(mIsHeadsetOn); in updateUIHeadset()
635 ((SeekBar) findViewById(R.id.bBStrengthSeekBar)).setEnabled(mIsHeadsetOn); in updateUIHeadset()
636 findViewById(R.id.bBLayout).setEnabled(!mIsHeadsetOn); in updateUIHeadset()
666 ((TextView) eqcontainer.findViewById(EQViewElementIds[band][0])).setText( in equalizerBandsInit()
669 .findViewById(EQViewElementIds[band][1]); in equalizerBandsInit()
670 eqcontainer.findViewById(EQViewElementIds[band][0]) in equalizerBandsInit()
679 eqcontainer.findViewById(EQViewElementIds[band][0]).setVisibility(View.GONE); in equalizerBandsInit()
681 eqcontainer.findViewById(EQViewElementIds[band][1]).setVisibility(View.GONE); in equalizerBandsInit()
684 TextView tv = (TextView) findViewById(R.id.maxLevelText); in equalizerBandsInit()
686 tv = (TextView) findViewById(R.id.centerLevelText); in equalizerBandsInit()
688 tv = (TextView) findViewById(R.id.minLevelText); in equalizerBandsInit()
740 ((Spinner)findViewById(R.id.eqSpinner)).setSelection(mEQPresetUserPos); in onStartTrackingTouch()