Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DDynamicChildBindControllerTest.java97 lastChild.getRow().getPrivateLayout().setContractedChild(null); in testContentViewsBeforeCutoffAreBound()
98 lastChild.getRow().getPrivateLayout().setExpandedChild(null); in testContentViewsBeforeCutoffAreBound()
128 row.getPrivateLayout().setContractedChild(new View(mContext)); in createRow()
129 row.getPrivateLayout().setExpandedChild(new View(mContext)); in createRow()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflaterTest.java156 assertNotNull(mRow.getPrivateLayout().getHeadsUpChild()); in testInflationOnlyInflatesSetFlags()
162 mRow.getPrivateLayout().removeAllViews(); in testInflationThrowsErrorDoesntCallUpdated()
167 assertTrue(mRow.getPrivateLayout().getChildCount() == 0); in testInflationThrowsErrorDoesntCallUpdated()
221 }, mRow.getPrivateLayout(), null, null, new HashMap<>(), in testInflationIsRetriedIfAsyncFails()
259 mRow.getPrivateLayout().setContractedChild(view); in testUsesSameViewWhenCachedPossibleToReuse()
266 view, mRow.getPrivateLayout().getContractedChild()); in testUsesSameViewWhenCachedPossibleToReuse()
280 mRow.getPrivateLayout().setContractedChild(view); in testInflatesNewViewWhenCachedNotPossibleToReuse()
287 view, mRow.getPrivateLayout().getContractedChild()); in testInflatesNewViewWhenCachedNotPossibleToReuse()
DNotificationEntryManagerInflationTest.java326 assertNotNull(entry.getRow().getPrivateLayout().getContractedChild()); in testAddNotification()
387 assertNotNull(entry.getRow().getPrivateLayout().getContractedChild()); in testContentViewInflationDuringRowInflationInflatesCorrectViews()
388 assertNotNull(entry.getRow().getPrivateLayout().getHeadsUpChild()); in testContentViewInflationDuringRowInflationInflatesCorrectViews()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflater.java212 row.getPrivateLayout().performWhenContentInactive(VISIBLE_TYPE_CONTRACTED, () -> { in freeNotificationView()
213 row.getPrivateLayout().setContractedChild(null); in freeNotificationView()
218 row.getPrivateLayout().performWhenContentInactive(VISIBLE_TYPE_EXPANDED, () -> { in freeNotificationView()
219 row.getPrivateLayout().setExpandedChild(null); in freeNotificationView()
224 row.getPrivateLayout().performWhenContentInactive(VISIBLE_TYPE_HEADSUP, () -> { in freeNotificationView()
225 row.getPrivateLayout().setHeadsUpChild(null); in freeNotificationView()
227 row.getPrivateLayout().setHeadsUpInflatedSmartReplies(null); in freeNotificationView()
252 row.getPrivateLayout().removeContentInactiveRunnable(VISIBLE_TYPE_CONTRACTED); in cancelContentViewFrees()
255 row.getPrivateLayout().removeContentInactiveRunnable(VISIBLE_TYPE_EXPANDED); in cancelContentViewFrees()
258 row.getPrivateLayout().removeContentInactiveRunnable(VISIBLE_TYPE_HEADSUP); in cancelContentViewFrees()
[all …]
DExpandableNotificationRow.java397 public NotificationContentView getPrivateLayout() { in getPrivateLayout() method in ExpandableNotificationRow
2823 return getPrivateLayout().getExpandedChild();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DDynamicChildBindController.java100 return row.getPrivateLayout().getContractedChild() != null in hasContent()
101 || row.getPrivateLayout().getExpandedChild() != null; in hasContent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationHeaderUtil.java184 final NotificationContentView layout = row.getPrivateLayout(); in sanitizeHeaderViews()
286 View contractedChild = row.getPrivateLayout().getContractedChild(); in compareToHeader()
311 applyToView(apply, reset, row.getPrivateLayout().getContractedChild()); in apply()
312 applyToView(apply, reset, row.getPrivateLayout().getHeadsUpChild()); in apply()
313 applyToView(apply, reset, row.getPrivateLayout().getExpandedChild()); in apply()
DNotificationRemoteInputManager.java444 riv = findRemoteInputView(row.getPrivateLayout().getExpandedChild()); in activateRemoteInput()
449 if (riv == row.getPrivateLayout().getExpandedRemoteInput() in activateRemoteInput()
450 && !row.getPrivateLayout().getExpandedChild().isShown()) { in activateRemoteInput()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarRemoteInputCallback.java188 row.getPrivateLayout().setOnExpandedVisibleListener(clickedView::performClick); in onMakeExpandedVisibleForRemoteInput()