Home
last modified time | relevance | path

Searched refs:getPrivateLayout (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflaterTest.java137 assertNotNull(mRow.getPrivateLayout().getHeadsUpChild()); in testInflationOnlyInflatesSetFlags()
144 mRow.getPrivateLayout().removeAllViews(); in testInflationThrowsErrorDoesntCallUpdated()
149 assertTrue(mRow.getPrivateLayout().getChildCount() == 0); in testInflationThrowsErrorDoesntCallUpdated()
196 }, mRow.getPrivateLayout(), null, null, new HashMap<>(), in testInflationIsRetriedIfAsyncFails()
DExpandableNotificationRowTest.java153 assertNull(row.getPrivateLayout().getHeadsUpChild()); in testFreeContentViewWhenSafe()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflater.java313 if (mRow.getPrivateLayout().isContentViewInactive(VISIBLE_TYPE_HEADSUP)) { in freeNotificationView()
314 mRow.getPrivateLayout().setHeadsUpChild(null); in freeNotificationView()
316 mRow.getPrivateLayout().setHeadsUpInflatedSmartReplies(null); in freeNotificationView()
320 boolean privateSafeToRemove = mRow.getPrivateLayout().isContentViewInactive( in freeNotificationView()
325 mRow.getPrivateLayout().setAmbientChild(null); in freeNotificationView()
410 NotificationContentView privateLayout = row.getPrivateLayout(); in apply()
677 NotificationContentView privateLayout = row.getPrivateLayout(); in finishIfDone()
832 : row.getPrivateLayout(); in canReapplyAmbient()
DExpandableNotificationRow.java389 public NotificationContentView getPrivateLayout() { in getPrivateLayout() method in ExpandableNotificationRow
487 getPrivateLayout().performWhenContentInactive(VISIBLE_TYPE_HEADSUP, in freeContentViewWhenSafe()
491 getPrivateLayout().performWhenContentInactive(VISIBLE_TYPE_AMBIENT, in freeContentViewWhenSafe()
2833 return getPrivateLayout().getExpandedChild();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationHeaderUtil.java177 final NotificationContentView layout = row.getPrivateLayout(); in sanitizeHeaderViews()
300 applyToView(apply, row.getPrivateLayout().getContractedChild()); in apply()
301 applyToView(apply, row.getPrivateLayout().getHeadsUpChild()); in apply()
302 applyToView(apply, row.getPrivateLayout().getExpandedChild()); in apply()
DNotificationRemoteInputManager.java395 riv = findRemoteInputView(row.getPrivateLayout().getExpandedChild()); in activateRemoteInput()
400 if (riv == row.getPrivateLayout().getExpandedRemoteInput() in activateRemoteInput()
401 && !row.getPrivateLayout().getExpandedChild().isShown()) { in activateRemoteInput()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarRemoteInputCallback.java171 row.getPrivateLayout().setOnExpandedVisibleListener(clickedView::performClick); in onMakeExpandedVisibleForRemoteInput()