HomeSort by relevance Sort by last modified time
    Searched refs:ExpandableNotificationRow (Results 1 - 25 of 46) sorted by null

1 2

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
VisibilityLocationProvider.java 19 import com.android.systemui.statusbar.ExpandableNotificationRow;
29 boolean isInVisibleLocation(ExpandableNotificationRow row);
NotificationBigPictureTemplateViewWrapper.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
34 ExpandableNotificationRow row) {
39 public void onContentUpdated(ExpandableNotificationRow row) {
NotificationBigTextTemplateViewWrapper.java 24 import com.android.systemui.statusbar.ExpandableNotificationRow;
35 ExpandableNotificationRow row) {
44 public void onContentUpdated(ExpandableNotificationRow row) {
NotificationMediaTemplateViewWrapper.java 22 import com.android.systemui.statusbar.ExpandableNotificationRow;
31 ExpandableNotificationRow row) {
42 public void onContentUpdated(ExpandableNotificationRow row) {
RowInflaterTask.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
30 * An inflater task that asynchronously inflates a ExpandableNotificationRow
58 mListener.onInflationFinished((ExpandableNotificationRow) view);
63 void onInflationFinished(ExpandableNotificationRow row);
NotificationMessagingTemplateViewWrapper.java 20 import com.android.systemui.statusbar.ExpandableNotificationRow;
39 ExpandableNotificationRow row) {
73 public void onContentUpdated(ExpandableNotificationRow row) {
NotificationViewWrapper.java 28 import com.android.systemui.statusbar.ExpandableNotificationRow;
38 protected final ExpandableNotificationRow mRow;
46 public static NotificationViewWrapper wrap(Context ctx, View v, ExpandableNotificationRow row) {
65 protected NotificationViewWrapper(Context ctx, View view, ExpandableNotificationRow row) {
96 public void onContentUpdated(ExpandableNotificationRow row) {
VisualStabilityManager.java 22 import com.android.systemui.statusbar.ExpandableNotificationRow;
112 public boolean canReorderNotification(ExpandableNotificationRow row) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
OnHeadsUpChangedListener.java 19 import com.android.systemui.statusbar.ExpandableNotificationRow;
36 default void onHeadsUpPinned(ExpandableNotificationRow headsUp) {}
41 default void onHeadsUpUnPinned(ExpandableNotificationRow headsUp) {}
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationTestHelper.java 35 * A helper class to create {@link ExpandableNotificationRow}
43 private ExpandableNotificationRow mRow;
51 public ExpandableNotificationRow createRow() throws Exception {
66 public ExpandableNotificationRow createRow(Notification notification) throws Exception {
70 mRow = (ExpandableNotificationRow) inflater.inflate(
74 ExpandableNotificationRow row = mRow;
88 public ExpandableNotificationRow createGroup() throws Exception {
89 ExpandableNotificationRow row = createRow();
NotificationContentViewTest.java 50 ExpandableNotificationRow row = new ExpandableNotificationRow(mContext, null);
51 ExpandableNotificationRow mockRow = spy(row);
ExpandableNotificationRowTest.java 45 private ExpandableNotificationRow mGroup;
93 ExpandableNotificationRow row = spy(mNotificationTestHelper.createRow());
101 ExpandableNotificationRow row = spy(mNotificationTestHelper.createRow());
NotificationCustomViewWrapperTest.java 43 private ExpandableNotificationRow mRow;
48 mRow = new ExpandableNotificationRow(mContext, null);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollState.java 24 import com.android.systemui.statusbar.ExpandableNotificationRow;
57 if (child instanceof ExpandableNotificationRow) {
58 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
59 List<ExpandableNotificationRow> children =
62 for (ExpandableNotificationRow childRow : children) {
StackScrollAlgorithm.java 27 import com.android.systemui.statusbar.ExpandableNotificationRow;
100 if (v instanceof ExpandableNotificationRow) {
101 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
143 boolean isHeadsUp = (child instanceof ExpandableNotificationRow)
144 && ((ExpandableNotificationRow) child).isPinned();
164 if (!(v instanceof ExpandableNotificationRow)) {
167 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
282 if (v instanceof ExpandableNotificationRow) {
    [all...]
NotificationStackScrollLayout.java 73 import com.android.systemui.statusbar.ExpandableNotificationRow;
266 private HashSet<Pair<ExpandableNotificationRow, Boolean>> mHeadsUpChangeAnimations
272 private final ArrayList<Pair<ExpandableNotificationRow, Boolean>> mTmpList = new ArrayList<>();
425 if (view instanceof ExpandableNotificationRow) {
426 ExpandableNotificationRow row = (ExpandableNotificationRow) view;
444 if (row instanceof ExpandableNotificationRow) {
446 ((ExpandableNotificationRow) row).getStatusBarNotification()
572 private void requestAnimationOnViewResize(ExpandableNotificationRow row) {
589 public boolean isInVisibleLocation(ExpandableNotificationRow row)
    [all...]
NotificationChildrenContainer.java 35 import com.android.systemui.statusbar.ExpandableNotificationRow;
65 private final List<ExpandableNotificationRow> mChildren = new ArrayList<>();
74 private ExpandableNotificationRow mContainingNotification;
184 ExpandableNotificationRow child = mChildren.get(i);
237 public void addNotification(ExpandableNotificationRow row, int childIndex) {
251 public void removeNotification(ExpandableNotificationRow row) {
408 public List<ExpandableNotificationRow> getNotificationChildren() {
420 public boolean applyChildOrder(List<ExpandableNotificationRow> childOrder,
428 ExpandableNotificationRow child = mChildren.get(i);
429 ExpandableNotificationRow desiredChild = childOrder.get(i)
    [all...]
StackStateAnimator.java 29 import com.android.systemui.statusbar.ExpandableNotificationRow;
376 if (changingView instanceof ExpandableNotificationRow
377 && event.viewAfterChangingView instanceof ExpandableNotificationRow) {
378 ExpandableNotificationRow changingRow =
379 (ExpandableNotificationRow) changingView;
380 ExpandableNotificationRow nextRow =
381 (ExpandableNotificationRow) event.viewAfterChangingView;
417 ExpandableNotificationRow row = (ExpandableNotificationRow) event.changingView;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
NotificationViewWrapperTest.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
46 ExpandableNotificationRow row) {
VisualStabilityManagerTest.java 24 import com.android.systemui.statusbar.ExpandableNotificationRow;
46 private ExpandableNotificationRow mRow = mock(ExpandableNotificationRow.class);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationHeaderUtil.java 41 public Object extractData(ExpandableNotificationRow row) {
89 private final ExpandableNotificationRow mRow;
93 public NotificationHeaderUtil(ExpandableNotificationRow row) {
135 List<ExpandableNotificationRow> notificationChildren = mRow.getNotificationChildren();
146 ExpandableNotificationRow row = notificationChildren.get(i);
154 ExpandableNotificationRow row = notificationChildren.get(i);
163 private void sanitizeHeaderViews(ExpandableNotificationRow row) {
230 public void restoreNotificationHeader(ExpandableNotificationRow row) {
241 private final ExpandableNotificationRow mParentRow;
247 public static HeaderProcessor forTextView(ExpandableNotificationRow row, int id)
    [all...]
ExpandableNotificationRow.java 82 public class ExpandableNotificationRow extends ActivatableNotificationView
170 private ExpandableNotificationRow mNotificationParent;
209 private static final Property<ExpandableNotificationRow, Float> TRANSLATE_CONTENT =
210 new FloatProperty<ExpandableNotificationRow>("translate") {
212 public void setValue(ExpandableNotificationRow object, float value) {
217 public Float get(ExpandableNotificationRow object) {
274 List<ExpandableNotificationRow> notificationChildren =
277 ExpandableNotificationRow child = notificationChildren.get(i);
464 public void addChildNotification(ExpandableNotificationRow row) {
474 public void addChildNotification(ExpandableNotificationRow row, int childIndex)
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
ExpandHelperTest.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
41 private ExpandableNotificationRow mRow;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
HeadsUpTouchHelper.java 24 import com.android.systemui.statusbar.ExpandableNotificationRow;
44 private ExpandableNotificationRow mPickedChild;
80 if (child instanceof ExpandableNotificationRow) {
81 mPickedChild = (ExpandableNotificationRow) child;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/stack/
NotificationChildrenContainerTest.java 29 import com.android.systemui.statusbar.ExpandableNotificationRow;
42 private ExpandableNotificationRow mGroup;

Completed in 1145 milliseconds

1 2