Home
last modified time | relevance | path

Searched refs:shouldShowEmptyView (Results 1 – 3 of 3) sorted by relevance

/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/ui/
DPhotosTabFragment.java426 boolean shouldShowEmptyView = (itemList.getItems().size() == 0); in onChangeMediaItems()
427 updateVisibilityForEmptyView(shouldShowEmptyView); in onChangeMediaItems()
428 if (shouldShowEmptyView) { in onChangeMediaItems()
DTabFragment.java1025 protected void updateVisibilityForEmptyView(boolean shouldShowEmptyView) {
1026 mEmptyView.setVisibility(shouldShowEmptyView ? View.VISIBLE : View.GONE);
1027 mRecyclerView.setVisibility(shouldShowEmptyView ? View.GONE : View.VISIBLE);
/packages/apps/Contacts/src/com/android/contacts/list/
DDefaultContactBrowseListFragment.java317 if (!isSearchMode() && numberOfContacts <= 0 && shouldShowEmptyView(filter)) { in bindListHeader()
345 private boolean shouldShowEmptyView(ContactListFilter filter) { in shouldShowEmptyView() method in DefaultContactBrowseListFragment