Searched defs:mEmptyListView (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Dialer/src/com/android/dialer/list/
H A DAllContactsFragment.java56 private EmptyContentView mEmptyListView; field in class:AllContactsFragment
82 mEmptyListView = (EmptyContentView) view.findViewById(R.id.empty_list_view);
83 mEmptyListView.setImage(R.drawable.empty_contacts);
84 mEmptyListView.setDescription(R.string.all_contacts_empty);
85 mEmptyListView.setActionClickedListener(this);
86 getListView().setEmptyView(mEmptyListView);
87 mEmptyListView.setVisibility(View.GONE);
110 mEmptyListView.setDescription(R.string.all_contacts_empty);
111 mEmptyListView.setActionLabel(R.string.all_contacts_empty_add_contact_action);
113 mEmptyListView
[all...]
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogFragment.java102 private EmptyContentView mEmptyListView; field in class:CallLogFragment
231 mEmptyListView.setVisibility(!showListView ? View.VISIBLE : View.GONE);
292 mEmptyListView = (EmptyContentView) view.findViewById(R.id.empty_list_view);
293 mEmptyListView.setImage(R.drawable.empty_call_log);
294 mEmptyListView.setActionClickedListener(this);
401 mEmptyListView.setDescription(R.string.permission_no_calllog);
402 mEmptyListView.setActionLabel(R.string.permission_single_turn_on);
421 mEmptyListView.setDescription(messageId);
423 mEmptyListView.setActionLabel(R.string.recentCalls_empty_action);
425 mEmptyListView
[all...]

Completed in 41 milliseconds