Searched refs:customContent (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/widget/ |
D | UsageProgressBarPreferenceTest.java | 167 final FrameLayout customContent = in setCustomContent_setNullImageView_noChild() local 169 assertThat(customContent.getChildCount()).isEqualTo(0); in setCustomContent_setNullImageView_noChild() 170 assertThat(customContent.getVisibility()).isEqualTo(View.GONE); in setCustomContent_setNullImageView_noChild() 180 final FrameLayout customContent = in setCustomContent_setImageView_oneChild() local 182 assertThat(customContent.getChildCount()).isEqualTo(1); in setCustomContent_setImageView_oneChild() 183 assertThat(customContent.getChildAt(0)).isEqualTo(imageView); in setCustomContent_setImageView_oneChild() 184 assertThat(customContent.getVisibility()).isEqualTo(View.VISIBLE); in setCustomContent_setImageView_oneChild() 196 final FrameLayout customContent = in setCustomContent_setImageViewTwice_oneAndLatestChild() local 198 assertThat(customContent.getChildCount()).isEqualTo(1); in setCustomContent_setImageViewTwice_oneAndLatestChild() 199 assertThat(customContent.getChildAt(0)).isEqualTo(imageViewNew); in setCustomContent_setImageViewTwice_oneAndLatestChild() [all …]
|
/frameworks/base/core/java/android/app/ |
D | Notification.java | 6473 private RemoteViews minimallyDecoratedContentView(@NonNull RemoteViews customContent) { in minimallyDecoratedContentView() argument 6480 buildCustomContentIntoTemplate(mContext, standard, customContent, in minimallyDecoratedContentView() 6485 private RemoteViews minimallyDecoratedBigContentView(@NonNull RemoteViews customContent) { in minimallyDecoratedBigContentView() argument 6493 buildCustomContentIntoTemplate(mContext, standard, customContent, in minimallyDecoratedBigContentView() 6500 @NonNull RemoteViews customContent) { in minimallyDecoratedHeadsUpContentView() 6508 buildCustomContentIntoTemplate(mContext, standard, customContent, in minimallyDecoratedHeadsUpContentView() 6540 private boolean useExistingRemoteView(RemoteViews customContent) { in useExistingRemoteView() argument 6541 if (customContent == null) { in useExistingRemoteView() 6549 && STANDARD_LAYOUTS.contains(customContent.getLayoutId())) { in useExistingRemoteView() 7813 @NonNull RemoteViews template, @Nullable RemoteViews customContent, in buildCustomContentIntoTemplate() argument [all …]
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationRecordTest.java | 204 private StatusBarNotification getStyledNotification(boolean customContent, boolean customBig, in getStyledNotification() argument 212 if (customContent) { in getStyledNotification()
|