Home
last modified time | relevance | path

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

/packages/apps/Dialer/src/com/android/dialer/list/
DAllContactsFragment.java59 private EmptyContentView mEmptyListView; field in AllContactsFragment
85 mEmptyListView = (EmptyContentView) view.findViewById(R.id.empty_list_view); in onViewCreated()
86 mEmptyListView.setImage(R.drawable.empty_contacts); in onViewCreated()
87 mEmptyListView.setDescription(R.string.all_contacts_empty); in onViewCreated()
88 mEmptyListView.setActionClickedListener(this); in onViewCreated()
89 getListView().setEmptyView(mEmptyListView); in onViewCreated()
90 mEmptyListView.setVisibility(View.GONE); in onViewCreated()
113 mEmptyListView.setDescription(R.string.all_contacts_empty); in startLoading()
114 mEmptyListView.setActionLabel(R.string.all_contacts_empty_add_contact_action); in startLoading()
116 mEmptyListView.setDescription(R.string.permission_no_contacts); in startLoading()
[all …]
/packages/apps/Dialer/src/com/android/dialer/calllog/
DCallLogFragment.java90 private EmptyContentView mEmptyListView; field in CallLogFragment
228 mEmptyListView.setVisibility(!showListView ? View.VISIBLE : View.GONE); in onCallsFetched()
300 mEmptyListView = (EmptyContentView) view.findViewById(R.id.empty_list_view); in setupView()
301 mEmptyListView.setImage(R.drawable.empty_call_log); in setupView()
302 mEmptyListView.setActionClickedListener(this); in setupView()
403 mEmptyListView.setDescription(R.string.permission_no_calllog); in updateEmptyMessage()
404 mEmptyListView.setActionLabel(R.string.permission_single_turn_on); in updateEmptyMessage()
423 mEmptyListView.setDescription(messageId); in updateEmptyMessage()
425 mEmptyListView.setActionLabel(EmptyContentView.NO_LABEL); in updateEmptyMessage()
427 mEmptyListView.setActionLabel(R.string.call_log_all_empty_action); in updateEmptyMessage()
/packages/apps/Dialer/src/com/android/dialer/voicemail/
DVoicemailArchiveActivity.java45 private EmptyContentView mEmptyListView; field in VoicemailArchiveActivity
91 mEmptyListView = (EmptyContentView) findViewById(R.id.empty_list_view); in onCreate()
92 mEmptyListView.setDescription(R.string.voicemail_archive_empty); in onCreate()
93 mEmptyListView.setImage(R.drawable.empty_call_log); in onCreate()
157 mEmptyListView.setVisibility(!showListView ? View.VISIBLE : View.GONE); in onCallsFetched()