Home
last modified time | relevance | path

Searched refs:mHeaderView (Results 1 – 12 of 12) sorted by relevance

/packages/apps/Gallery2/src/com/android/photos/
DAlbumFragment.java53 private View mHeaderView; field in AlbumFragment
82 if (mHeaderView == null) { in updateHeaderView()
83 mHeaderView = LayoutInflater.from(getActivity()) in updateHeaderView()
85 ((HeaderGridView) getGridView()).addHeaderView(mHeaderView, null, false); in updateHeaderView()
88 mHeaderView.setMinimumHeight(200); in updateHeaderView()
90 ImageView iv = (ImageView) mHeaderView.findViewById(R.id.album_header_image); in updateHeaderView()
91 TextView title = (TextView) mHeaderView.findViewById(R.id.album_header_title); in updateHeaderView()
92 TextView subtitle = (TextView) mHeaderView.findViewById(R.id.album_header_subtitle); in updateHeaderView()
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint/
DUdfpsEnrollEnrollingView.java82 private View mHeaderView; field in UdfpsEnrollEnrollingView
104 mHeaderView = findViewById(com.google.android.setupdesign.R.id.sud_landscape_header_area); in onFinishInflate()
299 mHeaderView.post(() -> { in setSecondaryButtonBackground()
301 new LinearLayout.LayoutParams(mHeaderView.getMeasuredWidth(), in setSecondaryButtonBackground()
401 ViewGroup parentView = (ViewGroup) mHeaderView.getParent(); in swapHeaderAndContent()
402 parentView.removeView(mHeaderView); in swapHeaderAndContent()
403 parentView.addView(mHeaderView); in swapHeaderAndContent()
406 BottomScrollView headerScrollView = mHeaderView.findViewById( in swapHeaderAndContent()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactListItemView.java176 private View mHeaderView; field in ContactListItemView
598 if (mHeaderView != null && mHeaderView.getVisibility() == VISIBLE) { in onMeasure()
599 mHeaderView.measure( in onMeasure()
622 if (mHeaderView != null) { in onLayout()
623 int headerHeight = mHeaderView.getMeasuredHeight(); in onLayout()
626 mHeaderView.layout( in onLayout()
984 if (mHeaderView == null) { in setSectionHeader()
986 } else if (mHeaderView instanceof TextView) { in setSectionHeader()
987 removeView(mHeaderView); in setSectionHeader()
990 mHeaderView.setVisibility(View.VISIBLE); in setSectionHeader()
[all …]
/packages/apps/Car/Notification/src/com/android/car/notification/template/
DNavigationNotificationViewHolder.java32 private final CarNotificationHeaderView mHeaderView; field in NavigationNotificationViewHolder
39 mHeaderView = view.findViewById(R.id.notification_header); in NavigationNotificationViewHolder()
52 mHeaderView.bind(alertEntry, isInGroup); in bind()
DCallNotificationViewHolder.java30 private final CarNotificationHeaderView mHeaderView; field in CallNotificationViewHolder
38 mHeaderView = view.findViewById(R.id.notification_header); in CallNotificationViewHolder()
52 mHeaderView.bind(alertEntry, isInGroup); in bind()
DBasicNotificationViewHolder.java30 private final CarNotificationHeaderView mHeaderView; field in BasicNotificationViewHolder
38 mHeaderView = view.findViewById(R.id.notification_header); in BasicNotificationViewHolder()
52 mHeaderView.bind(alertEntry, isInGroup); in bind()
DInboxNotificationViewHolder.java31 private final CarNotificationHeaderView mHeaderView; field in InboxNotificationViewHolder
39 mHeaderView = view.findViewById(R.id.notification_header); in InboxNotificationViewHolder()
53 mHeaderView.bind(alertEntry, isInGroup); in bind()
DEmergencyNotificationViewHolder.java34 private final CarNotificationHeaderView mHeaderView; field in EmergencyNotificationViewHolder
50 mHeaderView = view.findViewById(R.id.notification_header); in EmergencyNotificationViewHolder()
76 mHeaderView.bind(alertEntry, isInGroup); in bind()
DProgressNotificationViewHolder.java35 private final CarNotificationHeaderView mHeaderView; field in ProgressNotificationViewHolder
50 mHeaderView = view.findViewById(R.id.notification_header); in ProgressNotificationViewHolder()
68 mHeaderView.bind(alertEntry, isInGroup); in bind()
DMessageNotificationViewHolder.java54 private final CarNotificationHeaderView mHeaderView; field in MessageNotificationViewHolder
74 mHeaderView = view.findViewById(R.id.notification_header); in MessageNotificationViewHolder()
108 mHeaderView.bind(alertEntry, isInGroup); in bind()
120 mHeaderView.bind(alertEntry, isInGroup); in bindRestricted()
342 mHeaderView.reset(); in reset()
DCarNotificationBaseViewHolder.java49 private final CarNotificationHeaderView mHeaderView; field in CarNotificationBaseViewHolder
127 mHeaderView = itemView.findViewById(R.id.notification_header); in CarNotificationBaseViewHolder()
191 bindHeader(mHeaderView, isInGroup); in bind()
/packages/apps/Settings/src/com/android/settings/
DTrustedCredentialsFragment.java546 private ViewGroup mHeaderView; field in TrustedCredentialsFragment.ChildAdapter
611 mHeaderView = mContainerView.findViewById(R.id.header_view); in setContainerView()
612 mHeaderView.setOnClickListener(this); in setContainerView()
614 mIndicatorView = mHeaderView.findViewById(R.id.group_indicator); in setContainerView()
618 mHeaderView.findViewById(R.id.header_content_container); in setContainerView()
633 mHeaderView.setVisibility(showHeader ? View.VISIBLE : View.GONE); in showHeader()
637 View dividerView = mHeaderView.findViewById(R.id.header_divider); in showDivider()