Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentInflaterTest.java183 assertNotNull(mRow.getPrivateLayout().getHeadsUpChild()); in testInflationOnlyInflatesSetFlags()
189 mRow.getPrivateLayout().removeAllViews(); in testInflationThrowsErrorDoesntCallUpdated()
194 assertTrue(mRow.getPrivateLayout().getChildCount() == 0); in testInflationThrowsErrorDoesntCallUpdated()
248 }, mRow.getPrivateLayout(), null, null, new HashMap<>(), in testInflationIsRetriedIfAsyncFails()
287 mRow.getPrivateLayout().setContractedChild(view); in testUsesSameViewWhenCachedPossibleToReuse()
294 view, mRow.getPrivateLayout().getContractedChild()); in testUsesSameViewWhenCachedPossibleToReuse()
308 mRow.getPrivateLayout().setContractedChild(view); in testInflatesNewViewWhenCachedNotPossibleToReuse()
315 view, mRow.getPrivateLayout().getContractedChild()); in testInflatesNewViewWhenCachedNotPossibleToReuse()
365 mRow.getPrivateLayout().removeAllViews(); in testInvalidNotificationDoesNotInvokeCallback()
369 assertEquals(0, mRow.getPrivateLayout().getChildCount()); in testInvalidNotificationDoesNotInvokeCallback()
H A DExpandableNotificationRowControllerTest.kt249 verify(view, never()).getPrivateLayout()
257 verify(view, never()).getPrivateLayout()
H A DExpandableNotificationRowTest.java212 assertThat(row.getShowingLayout()).isSameInstanceAs(row.getPrivateLayout()); in testSetSensitiveOnNotifRowNotifiesOfHeightChange()
244 assertThat(group.getShowingLayout()).isSameInstanceAs(group.getPrivateLayout()); in testSetSensitiveOnGroupRowNotifiesOfHeightChange()
279 assertThat(publicRow.getShowingLayout()).isSameInstanceAs(publicRow.getPrivateLayout()); in testSetSensitiveOnPublicRowDoesNotNotifyOfHeightChange()
281 assertThat(publicRow.getPrivateLayout().getMinHeight()) in testSetSensitiveOnPublicRowDoesNotNotifyOfHeightChange()
/aosp14/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()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentInflater.java235 row.getPrivateLayout().setContractedChild(null); in freeNotificationView()
240 row.getPrivateLayout().performWhenContentInactive(VISIBLE_TYPE_EXPANDED, () -> { in freeNotificationView()
241 row.getPrivateLayout().setExpandedChild(null); in freeNotificationView()
246 row.getPrivateLayout().performWhenContentInactive(VISIBLE_TYPE_HEADSUP, () -> { in freeNotificationView()
247 row.getPrivateLayout().setHeadsUpChild(null); in freeNotificationView()
249 row.getPrivateLayout().setHeadsUpInflatedSmartReplies(null); in freeNotificationView()
274 row.getPrivateLayout().removeContentInactiveRunnable(VISIBLE_TYPE_CONTRACTED); in cancelContentViewFrees()
277 row.getPrivateLayout().removeContentInactiveRunnable(VISIBLE_TYPE_EXPANDED); in cancelContentViewFrees()
280 row.getPrivateLayout().removeContentInactiveRunnable(VISIBLE_TYPE_HEADSUP); in cancelContentViewFrees()
384 NotificationContentView privateLayout = row.getPrivateLayout(); in apply()
[all …]
H A DExpandableNotificationRowController.java126 mView.getPrivateLayout().setBubblesEnabledForUser(
H A DExpandableNotificationRow.java431 public NotificationContentView getPrivateLayout() { in getPrivateLayout() method in ExpandableNotificationRow
/aosp14/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()
/aosp14/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.java426 riv = findRemoteInputView(row.getPrivateLayout().getExpandedChild()); in activateRemoteInput()
431 if (riv == row.getPrivateLayout().getExpandedRemoteInput() in activateRemoteInput()
432 && !row.getPrivateLayout().getExpandedChild().isShown()) { in activateRemoteInput()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarRemoteInputCallback.java200 row.getPrivateLayout().setOnExpandedVisibleListener(runnable); in onMakeExpandedVisibleForRemoteInput()