来自manifest的Android元数据返回null

时间:2014-03-05 22:06:42

标签: android metadata android-applicationinfo

我有一个类,其中一个方法试图从清单中检索元数据。除了我从应用程序信息创建的包返回空值

之外,一切正常

以下是代码:

    private int getCurrentVersion(){
    int currVersion = 0;

    try {
        ApplicationInfo app = context.getPackageManager().getApplicationInfo(context.getPackageName(),PackageManager.GET_META_DATA);
        Bundle bundle = app.metaData;

        for (String key: bundle.keySet())
        {
          Log.d ("TEST", key + " is a key in the bundle");
        }

        Log.d("TEST","google: "+bundle.getString("com.google.android.gms.version"));
        Log.d("TEST","version: "+bundle.getString("dbVersion"));

        //currVersion = Integer.valueOf(bundle.getString("dbVersion"));
        currVersion = 1;
    } catch (NameNotFoundException e) {
        e.printStackTrace();
    } catch (NullPointerException e) {
        e.printStackTrace();         
    }

    return currVersion;
}


03-05 18:53:23.818: D/TEST(31400): com.google.android.gms.version is a key in the bundle
03-05 18:53:23.818: D/TEST(31400): dbVersion is a key in the bundle
03-05 18:53:23.828: D/TEST(31400): google: null
03-05 18:53:23.828: D/TEST(31400): version: null

正如您所看到的,我正在使用一些日志来查看捆绑包是否为空,但不是。

2 个答案:

答案 0 :(得分:19)

在某些情况下,你需要使用getInt()方法:

bundle.getInt("com.google.android.gms.version"));

因为此元数据的值被定义为整数。

Log.d("TEST","google: "+bundle.getInt("com.google.android.gms.version"));

例如,如果元数据中定义的值是字符串:

     <meta-data 
         android:name="com.elenasys.a"
         android:value="abcXJ434" />  

使用:

   bundle.getString("com.elenasys.a"));   

如果值是整数:

   <meta-data 
         android:name="com.elenasys.b"
         android:value="1234" />  

使用getInt()

 bundle.getInt("com.elenasys.b"));

答案 1 :(得分:0)

还要确保标签位于AndroidManifest.xml中的manifest / application节点下,而不仅仅是根下:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.readmetadata"
  android:versionCode="1"
  android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">

        <meta-data android:name="dbVersion" android:value="1.0" />

        <activity android:name=".MainMenu" android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
</manifest>