]> git.saurik.com Git - android/aapt.git/commitdiff
xhdpi
authorDianne Hackborn <hackbod@google.com>
Fri, 4 Jun 2010 21:36:39 +0000 (14:36 -0700)
committerDianne Hackborn <hackbod@google.com>
Fri, 4 Jun 2010 21:36:39 +0000 (14:36 -0700)
This is only a tool (aapt) change, and does not impact any current code.

Change-Id: I562063f612af919eaadba8ac4868a95ff41ac840

AaptAssets.cpp

index fc655a7abbb7e966d537fe1c56e9fe10d7146943..efc961998e6b9c902da1694fe7d7cd906be5cd0f 100644 (file)
@@ -888,6 +888,11 @@ bool AaptGroupEntry::getDensityName(const char* name,
         return true;
     }
     
+    if (strcmp(name, "xhdpi") == 0) {
+        if (out) out->density = ResTable_config::DENSITY_MEDIUM*2;
+        return true;
+    }
+    
     char* c = (char*)name;
     while (*c >= '0' && *c <= '9') {
         c++;