Android 2.2 - 如何检测我是否安装在SD卡上?

时间:2010-10-23 15:16:01

标签: android android-emulator android-2.2-froyo android-sdcard

我正在编写一个存储大量媒体文件的Android应用程序。它们不是混淆用户通知或其他媒体目录的类型(并且太多),但它们也必须是用户可更新的,因此我不能将它们放在资源中。我可以使用getExternalFilesDir来获取SD卡上的路径,但是如果应用程序本身安装在SD卡上,我只想这样做。如果应用程序是在内部安装的,我想将媒体放在内部存储器中。

那么如何确定我的应用程序是在内部还是外部存储器中运行?

3 个答案:

答案 0 :(得分:9)

您可以使用PackageManager获取ApplicationInfo,并从那里检查FLAG_EXTERNAL_STORAGE的“标志”。

以下是我演示的一个简单示例:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    PackageManager pm = getPackageManager();
    try {
       PackageInfo pi = pm.getPackageInfo("com.totsp.helloworld", 0);
       ApplicationInfo ai = pi.applicationInfo;
       // this only works on API level 8 and higher (check that first)
       Toast
                .makeText(
                         this,
                         "Value of FLAG_EXTERNAL_STORAGE:"
                                  + ((ai.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) == ApplicationInfo.FLAG_EXTERNAL_STORAGE),
                         Toast.LENGTH_LONG).show();
    } catch (NameNotFoundException e) {
       // do something
    }
}

但是,根据您的情况(无论您是否预先拥有所有“媒体”,或者用户在使用应用程序时获取/创建它),您可能希望将其放在外部存储上。许多用户不赞成使用大型内部应用程序(很多内部媒体可能会让它变得庞大)。

答案 1 :(得分:3)

这是我的代码,用于检查SD卡上是否安装了应用程序:

  /**
   * Checks if the application is installed on the SD card.
   * 
   * @return <code>true</code> if the application is installed on the sd card
   */
  public static boolean isInstalledOnSdCard() {

    Context context = MbridgeApp.getContext();
    // check for API level 8 and higher
    if (VERSION.SDK_INT > android.os.Build.VERSION_CODES.ECLAIR_MR1) {
      PackageManager pm = context.getPackageManager();
      try {
        PackageInfo pi = pm.getPackageInfo(context.getPackageName(), 0);
        ApplicationInfo ai = pi.applicationInfo;
        return (ai.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) == ApplicationInfo.FLAG_EXTERNAL_STORAGE;
      } catch (NameNotFoundException e) {
        // ignore
      }
    }

    // check for API level 7 - check files dir
    try {
      String filesDir = context.getFilesDir().getAbsolutePath();
      if (filesDir.startsWith("/data/")) {
        return false;
      } else if (filesDir.contains("/mnt/") || filesDir.contains("/sdcard/")) {
        return true;
      }
    } catch (Throwable e) {
      // ignore
    }

    return false;
  }

答案 2 :(得分:0)

要检查应用程序是否安装在SD卡中,请执行以下操作:

ApplicationInfo io = context.getApplicationInfo();

if(io.sourceDir.startsWith("/data/")) {

//application is installed in internal memory

} else if(io.sourceDir.startsWith("/mnt/") || io.sourceDir.startsWith("/sdcard/")) {

//application is installed in sdcard(external memory)

}