Searched refs:shouldShowEmptyView (Results 1 – 3 of 3) sorted by relevance
426 boolean shouldShowEmptyView = (itemList.getItems().size() == 0); in onChangeMediaItems()427 updateVisibilityForEmptyView(shouldShowEmptyView); in onChangeMediaItems()428 if (shouldShowEmptyView) { in onChangeMediaItems()
1025 protected void updateVisibilityForEmptyView(boolean shouldShowEmptyView) {1026 mEmptyView.setVisibility(shouldShowEmptyView ? View.VISIBLE : View.GONE);1027 mRecyclerView.setVisibility(shouldShowEmptyView ? View.GONE : View.VISIBLE);
317 if (!isSearchMode() && numberOfContacts <= 0 && shouldShowEmptyView(filter)) { in bindListHeader()345 private boolean shouldShowEmptyView(ContactListFilter filter) { in shouldShowEmptyView() method in DefaultContactBrowseListFragment