diff options
author | Suchi Amalapurapu <asuchitra@google.com> | 2009-09-28 11:27:48 -0700 |
---|---|---|
committer | Suchi Amalapurapu <asuchitra@google.com> | 2009-09-28 11:28:58 -0700 |
commit | 78c69095eac147b60ce4ea5685c2dfcb4448c9f4 (patch) | |
tree | 5ffc60b2bb03250b8c208572f1014bb8cdba9bec /src | |
parent | 70cef693d133bc66db029bf055c51733ac54c972 (diff) | |
download | packages_apps_settings-78c69095eac147b60ce4ea5685c2dfcb4448c9f4.zip packages_apps_settings-78c69095eac147b60ce4ea5685c2dfcb4448c9f4.tar.gz packages_apps_settings-78c69095eac147b60ce4ea5685c2dfcb4448c9f4.tar.bz2 |
Rename empty view so that the standard list view implementation
displays empty list message when list goes empty. Ideally the list is
not empty for running processes and All filter options. so the
message is just set to third party apps
Remove the empty list view logic from code base
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/settings/ManageApplications.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/com/android/settings/ManageApplications.java b/src/com/android/settings/ManageApplications.java index 21647a8..a71d17b 100644 --- a/src/com/android/settings/ManageApplications.java +++ b/src/com/android/settings/ManageApplications.java @@ -212,9 +212,6 @@ public class ManageApplications extends ListActivity implements // Cache application attributes private AppInfoCache mCache = new AppInfoCache(); - // empty message displayed when list is empty - private TextView mEmptyView; - // Boolean variables indicating state private boolean mLoadLabels = false; private boolean mSizesFirst = false; @@ -776,17 +773,6 @@ public class ManageApplications extends ListActivity implements } } - private void showEmptyViewIfListEmpty() { - if (localLOGV) Log.i(TAG, "Checking for empty view"); - if (mAppInfoAdapter.getCount() > 0) { - mListView.setVisibility(View.VISIBLE); - mEmptyView.setVisibility(View.GONE); - } else { - mListView.setVisibility(View.GONE); - mEmptyView.setVisibility(View.VISIBLE); - } - } - // internal structure used to track added and deleted packages when // the activity has focus static class AddRemoveInfo { @@ -1192,7 +1178,6 @@ public class ManageApplications extends ListActivity implements } else { notifyDataSetChanged(); } - showEmptyViewIfListEmpty(); return true; } @@ -1594,7 +1579,6 @@ public class ManageApplications extends ListActivity implements // initialize the inflater mInflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE); mReceiver = new PackageIntentReceiver(); - mEmptyView = (TextView) findViewById(R.id.empty_view); mObserver = new PkgSizeObserver(); // Create adapter and list view here List<ApplicationInfo> appList = getInstalledApps(mSortOrder); |