Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentInflaterTest.java178 assertNotNull(mRow.getPrivateLayout().getHeadsUpChild()); in testInflationOnlyInflatesSetFlags()
184 mRow.getPrivateLayout().removeAllViews(); in testInflationThrowsErrorDoesntCallUpdated()
189 assertTrue(mRow.getPrivateLayout().getChildCount() == 0); in testInflationThrowsErrorDoesntCallUpdated()
243 }, mRow.getPrivateLayout(), null, null, new HashMap<>(), in testInflationIsRetriedIfAsyncFails()
281 mRow.getPrivateLayout().setContractedChild(view); in testUsesSameViewWhenCachedPossibleToReuse()
288 view, mRow.getPrivateLayout().getContractedChild()); in testUsesSameViewWhenCachedPossibleToReuse()
302 mRow.getPrivateLayout().setContractedChild(view); in testInflatesNewViewWhenCachedNotPossibleToReuse()
309 view, mRow.getPrivateLayout().getContractedChild()); in testInflatesNewViewWhenCachedNotPossibleToReuse()
H A DNotificationEntryManagerInflationTest.java354 assertNotNull(entry.getRow().getPrivateLayout().getContractedChild()); in testAddNotification()
415 assertNotNull(entry.getRow().getPrivateLayout().getContractedChild()); in testContentViewInflationDuringRowInflationInflatesCorrectViews()
416 assertNotNull(entry.getRow().getPrivateLayout().getHeadsUpChild()); in testContentViewInflationDuringRowInflationInflatesCorrectViews()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DDynamicChildBindControllerTest.java99 lastChild.getRow().getPrivateLayout().setContractedChild(null); in testContentViewsBeforeCutoffAreBound()
100 lastChild.getRow().getPrivateLayout().setExpandedChild(null); in testContentViewsBeforeCutoffAreBound()
130 row.getPrivateLayout().setContractedChild(new View(mContext)); in createRow()
131 row.getPrivateLayout().setExpandedChild(new View(mContext)); in createRow()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentInflater.java213 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()
333 NotificationContentView privateLayout = row.getPrivateLayout(); in apply()
[all …]
H A DExpandableNotificationRow.java421 public NotificationContentView getPrivateLayout() { in getPrivateLayout() method in ExpandableNotificationRow
2984 return getPrivateLayout().getExpandedChild();
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DDynamicChildBindController.java100 return row.getPrivateLayout().getContractedChild() != null in hasContent()
101 || row.getPrivateLayout().getExpandedChild() != null; in hasContent()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationGroupingUtil.java161 final NotificationContentView layout = row.getPrivateLayout(); in sanitizeTopLineViews()
265 View contractedChild = row.getPrivateLayout().getContractedChild(); in compareToGroupParent()
290 applyToView(apply, reset, row.getPrivateLayout().getContractedChild()); in apply()
291 applyToView(apply, reset, row.getPrivateLayout().getHeadsUpChild()); in apply()
292 applyToView(apply, reset, row.getPrivateLayout().getExpandedChild()); in apply()
H A DNotificationRemoteInputManager.java473 riv = findRemoteInputView(row.getPrivateLayout().getExpandedChild()); in activateRemoteInput()
478 if (riv == row.getPrivateLayout().getExpandedRemoteInput() in activateRemoteInput()
479 && !row.getPrivateLayout().getExpandedChild().isShown()) { in activateRemoteInput()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarRemoteInputCallback.java197 row.getPrivateLayout().setOnExpandedVisibleListener(runnable); in onMakeExpandedVisibleForRemoteInput()