summaryrefslogtreecommitdiff
path: root/src/com/android
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-06-12 01:17:01 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-06-11 21:23:31 +0000
commit4e11a9cc41fcf2f25e3e7849ab8afa032b93f5d0 (patch)
treeaa5c00a2152712464a8f3d5e02fdd216c68ade07 /src/com/android
parenteb43f8e59f34e9ea7ad4992cae34ff7551f9c56d (diff)
parent39f773e8a64ec1b770b2679871b7c44cac7243d2 (diff)
Merge "Update strings for empty lists in Dialer."
Diffstat (limited to 'src/com/android')
-rw-r--r--src/com/android/dialer/list/AllContactsFragment.java2
-rw-r--r--src/com/android/dialer/list/SpeedDialFragment.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/dialer/list/AllContactsFragment.java b/src/com/android/dialer/list/AllContactsFragment.java
index ddcb15df4..e4314db60 100644
--- a/src/com/android/dialer/list/AllContactsFragment.java
+++ b/src/com/android/dialer/list/AllContactsFragment.java
@@ -52,7 +52,7 @@ public class AllContactsFragment extends ContactEntryListFragment<ContactEntryLi
View emptyListView = view.findViewById(R.id.empty_list_view);
DialerUtils.configureEmptyListView(emptyListView, R.drawable.empty_contacts,
- R.string.listFoundAllContactsZero, getResources());
+ R.string.all_contacts_empty, getResources());
getListView().setEmptyView(emptyListView);
ViewUtil.addBottomPaddingToListViewForFab(getListView(), getResources());
diff --git a/src/com/android/dialer/list/SpeedDialFragment.java b/src/com/android/dialer/list/SpeedDialFragment.java
index c21449288..a04d4ccef 100644
--- a/src/com/android/dialer/list/SpeedDialFragment.java
+++ b/src/com/android/dialer/list/SpeedDialFragment.java
@@ -197,7 +197,7 @@ public class SpeedDialFragment extends Fragment implements OnItemClickListener,
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
- mParentView = inflater.inflate(R.layout.speeddial_fragment, container, false);
+ mParentView = inflater.inflate(R.layout.speed_dial_fragment, container, false);
mListView = (PhoneFavoriteListView) mParentView.findViewById(R.id.contact_tile_list);
mListView.setOnItemClickListener(this);
@@ -213,7 +213,7 @@ public class SpeedDialFragment extends Fragment implements OnItemClickListener,
final Resources resources = getResources();
mEmptyView = mParentView.findViewById(R.id.empty_list_view);
DialerUtils.configureEmptyListView(
- mEmptyView, R.drawable.empty_speed_dial, R.string.no_favorites, getResources());
+ mEmptyView, R.drawable.empty_speed_dial, R.string.speed_dial_empty, getResources());
mContactTileFrame = mParentView.findViewById(R.id.contact_tile_frame);