]> git.saurik.com Git - android/aapt.git/commitdiff
Add xxhdpi; fix ActivityManager.getLauncherLargeIconSize() etc.
authorDianne Hackborn <hackbod@google.com>
Wed, 25 Jan 2012 23:12:23 +0000 (15:12 -0800)
committerAndroid Git Automerger <android-git-automerger@android.com>
Mon, 5 Mar 2012 22:51:35 +0000 (14:51 -0800)
Change-Id: I519d6cdc527a402d93b98df17a64fc1da52ad598

AaptAssets.cpp

index 3d6537a9013e41725bbeb4cfe2cca31a353973dc..7900ab7aea6d2407edd602bf0194982549c0c5f7 100644 (file)
@@ -1079,12 +1079,17 @@ bool AaptGroupEntry::getDensityName(const char* name,
         if (out) out->density = ResTable_config::DENSITY_HIGH;
         return true;
     }
-    
+
     if (strcmp(name, "xhdpi") == 0) {
-        if (out) out->density = ResTable_config::DENSITY_MEDIUM*2;
+        if (out) out->density = ResTable_config::DENSITY_XHIGH;
         return true;
     }
-    
+
+    if (strcmp(name, "xxhdpi") == 0) {
+        if (out) out->density = ResTable_config::DENSITY_XXHIGH;
+        return true;
+    }
+
     char* c = (char*)name;
     while (*c >= '0' && *c <= '9') {
         c++;