Rename flag in ApplicationInfo

Change-Id: I368aabf364398bba574d8f5508d1d360f8c2dd6d
This commit is contained in:
Suchi Amalapurapu
2010-03-10 09:56:33 -08:00
parent 00290356b4
commit d2b8efa494
2 changed files with 5 additions and 5 deletions

View File

@@ -204,7 +204,7 @@ public class InstalledAppDetails extends Activity implements View.OnClickListene
boolean moveDisable = true; boolean moveDisable = true;
if (dataOnly) { if (dataOnly) {
mMoveAppButton.setText(R.string.move_app); mMoveAppButton.setText(R.string.move_app);
} else if ((mAppInfo.flags & ApplicationInfo.FLAG_ON_SDCARD) != 0) { } else if ((mAppInfo.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0) {
mMoveAppButton.setText(R.string.move_app_to_internal); mMoveAppButton.setText(R.string.move_app_to_internal);
moveDisable = false; moveDisable = false;
} else { } else {
@@ -644,7 +644,7 @@ public class InstalledAppDetails extends Activity implements View.OnClickListene
if (mPackageMoveObserver == null) { if (mPackageMoveObserver == null) {
mPackageMoveObserver = new PackageMoveObserver(); mPackageMoveObserver = new PackageMoveObserver();
} }
int moveFlags = (mAppInfo.flags & ApplicationInfo.FLAG_ON_SDCARD) != 0 ? int moveFlags = (mAppInfo.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0 ?
PackageManager.MOVE_INTERNAL : PackageManager.MOVE_EXTERNAL_MEDIA; PackageManager.MOVE_INTERNAL : PackageManager.MOVE_EXTERNAL_MEDIA;
mMoveAppButton.setText(R.string.moving); mMoveAppButton.setText(R.string.moving);
mMoveAppButton.setEnabled(false); mMoveAppButton.setEnabled(false);

View File

@@ -617,7 +617,7 @@ public class ManageApplications extends TabActivity implements
if (filterOption == FILTER_APPS_SDCARD) { if (filterOption == FILTER_APPS_SDCARD) {
List<ApplicationInfo> appList =new ArrayList<ApplicationInfo> (); List<ApplicationInfo> appList =new ArrayList<ApplicationInfo> ();
for (ApplicationInfo appInfo : installedAppList) { for (ApplicationInfo appInfo : installedAppList) {
if ((appInfo.flags & ApplicationInfo.FLAG_ON_SDCARD) != 0) { if ((appInfo.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0) {
// App on sdcard // App on sdcard
appList.add(appInfo); appList.add(appInfo);
} }
@@ -694,7 +694,7 @@ public class ManageApplications extends TabActivity implements
if (filterOption == FILTER_APPS_SDCARD) { if (filterOption == FILTER_APPS_SDCARD) {
for (ApplicationInfo appInfo : pAppList) { for (ApplicationInfo appInfo : pAppList) {
boolean flag = false; boolean flag = false;
if ((appInfo.flags & ApplicationInfo.FLAG_ON_SDCARD) != 0) { if ((appInfo.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0) {
// App on sdcard // App on sdcard
flag = true; flag = true;
} }
@@ -1269,7 +1269,7 @@ public class ManageApplications extends TabActivity implements
return true; return true;
} }
} else if (filterOption == FILTER_APPS_SDCARD) { } else if (filterOption == FILTER_APPS_SDCARD) {
if ((info.flags & ApplicationInfo.FLAG_ON_SDCARD) != 0) { if ((info.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0) {
return true; return true;
} }
} else { } else {