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

  /packages/apps/Settings/src/com/android/settings/dashboard/
ProgressiveDisclosureMixin.java 54 private /* final */ ExpandPreference mExpandButton;
63 mExpandButton = new ExpandPreference(context);
64 mExpandButton.setOnPreferenceClickListener(this);
143 screen.addPreference(mExpandButton);
198 screen.removePreference(mExpandButton);
254 mExpandButton.setSummary(null);
256 mExpandButton.setSummary(mCollapsedPrefs.get(0).getTitle());
266 mExpandButton.setSummary(summary);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/dashboard/
ProgressiveDisclosureTest.java 64 private ExpandPreference mExpandButton;
78 ReflectionHelpers.setField(mMixin, "mExpandButton", mExpandButton);
208 verify(mExpandButton, never()).setSummary(nullable(String.class));
223 verify(mExpandButton, atLeastOnce()).setSummary(nullable(String.class));
268 verify(mExpandButton).setSummary(nullable(String.class));
290 verify(mExpandButton).setSummary(nullable(String.class));
303 verify(mExpandButton, times(2)).setSummary(nullable(String.class));
311 verify(mExpandButton).setSummary(null);
330 verify(mExpandButton).setSummary("1, 3")
    [all...]
  /frameworks/base/core/java/android/view/
NotificationHeaderView.java 50 private ImageView mExpandButton;
102 mExpandButton = findViewById(com.android.internal.R.id.expand_button);
171 if (child == mExpandButton && mShowExpandButtonAtEnd) {
246 mExpandButton.setOnClickListener(mExpandClickListener);
284 mExpandButton.setImageDrawable(getContext().getDrawable(drawableId));
285 mExpandButton.setColorFilter(mOriginalNotificationColor);
286 mExpandButton.setContentDescription(mContext.getText(contentDescriptionId));
331 mExpandButtonRect = addRectAroundView(mExpandButton);
390 mExpandButton.performClick();
425 return mExpandButton;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationHeaderViewWrapper.java 59 private NotificationExpandButton mExpandButton;
116 mExpandButton = mView.findViewById(com.android.internal.R.id.expand_button);
118 mColor = resolveColor(mExpandButton);
236 mExpandButton.setVisibility(expandable ? View.VISIBLE : View.GONE);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogImpl.java 116 private ImageButton mExpandButton;
238 mExpandButton = (ImageButton) mDialogView.findViewById(R.id.volume_expand_button);
239 mExpandButton.setOnClickListener(mClickExpand);
241 mExpandButton.setVisibility(
246 mMotion = new VolumeDialogMotion(mDialog, mDialogView, mDialogContentView, mExpandButton,
600 mExpandButton.setClickable(!mExpandButtonAnimationRunning);
605 mExpandButton.setImageResource(res);
608 mExpandButton.setImageResource(R.drawable.ic_volume_ringer);
609 mExpandButton.setBackgroundResource(0); // remove gray background emphasis
611 mExpandButton.setContentDescription(mContext.getString(mExpanded
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationSnooze.java 85 private ImageView mExpandButton;
130 mExpandButton = (ImageView) findViewById(R.id.expand_button);
309 mExpandButton.setImageResource(drawableId);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
PipMenuActivity.java 109 private ImageView mExpandButton;
229 mExpandButton = findViewById(R.id.expand_button);

Completed in 835 milliseconds