HomeSort by relevance Sort by last modified time
    Searched refs:mSettingsButton (Results 1 - 3 of 3) sorted by null

  /packages/apps/Settings/src/com/android/settings/inputmethod/
CheckBoxAndSettingsPreference.java 37 private ImageView mSettingsButton;
58 mSettingsButton = (ImageView) view.findViewById(R.id.inputmethod_settings);
61 mSettingsButton.setOnClickListener(
97 if (mSettingsButton != null) {
99 mSettingsButton.setVisibility(View.GONE);
102 mSettingsButton.setEnabled(checked);
103 mSettingsButton.setClickable(checked);
104 mSettingsButton.setFocusable(checked);
106 mSettingsButton.setAlpha(Utils.DISABLED_ALPHA);
SingleSpellCheckerPreference.java 55 private View mSettingsButton;
101 mSettingsButton = view.findViewById(R.id.pref_right_button1);
102 mSettingsButton.setOnClickListener(
193 if (mSettingsButton != null) {
195 mSettingsButton.setVisibility(View.GONE);
197 mSettingsButton.setEnabled(enabled);
198 mSettingsButton.setClickable(enabled);
199 mSettingsButton.setFocusable(enabled);
201 mSettingsButton.setAlpha(Utils.DISABLED_ALPHA);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 215 ImageView mSettingsButton, mNotificationButton;
295 if (mSettingsButton != null && mHasFlipSettings) {
296 mSettingsButton.setVisibility(userSetup ? View.VISIBLE : View.INVISIBLE);
484 mSettingsButton = (ImageView) mStatusBarWindow.findViewById(R.id.settings_button);
485 if (mSettingsButton != null) {
486 mSettingsButton.setOnClickListener(mSettingsButtonListener);
490 mSettingsButton.setImageResource(R.drawable.ic_notify_quicksettings);
491 mSettingsButton.setVisibility(View.VISIBLE);
502 mSettingsButton.setVisibility(View.VISIBLE);
503 mSettingsButton.setImageResource(R.drawable.ic_notify_settings)
    [all...]

Completed in 2729 milliseconds