From 588feee5e771de5ec71da213fbb1cba29392c690 Mon Sep 17 00:00:00 2001 From: Dianne Hackborn Date: Fri, 4 Jun 2010 14:36:39 -0700 Subject: xhdpi This is only a tool (aapt) change, and does not impact any current code. Change-Id: I562063f612af919eaadba8ac4868a95ff41ac840 --- tools/aapt/AaptAssets.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tools/aapt') diff --git a/tools/aapt/AaptAssets.cpp b/tools/aapt/AaptAssets.cpp index fc655a7..efc9619 100644 --- a/tools/aapt/AaptAssets.cpp +++ b/tools/aapt/AaptAssets.cpp @@ -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++; -- cgit v1.1