From: Dianne Hackborn Date: Wed, 28 Apr 2010 23:58:05 +0000 (-0700) Subject: am 14cee9f6: New xlarge screen size. X-Git-Url: https://git.saurik.com/android/aapt.git/commitdiff_plain/b935e64360db2f6f0159b879a810ad4428c87ce9?hp=337efd6a727a249be478c824dbff5e11e98fee4e am 14cee9f6: New xlarge screen size. --- diff --git a/AaptAssets.cpp b/AaptAssets.cpp index fc655a7..4d2d046 100644 --- a/AaptAssets.cpp +++ b/AaptAssets.cpp @@ -766,6 +766,11 @@ bool AaptGroupEntry::getScreenLayoutSizeName(const char* name, (out->screenLayout&~ResTable_config::MASK_SCREENSIZE) | ResTable_config::SCREENSIZE_LARGE; return true; + } else if (strcmp(name, "xlarge") == 0) { + if (out) out->screenLayout = + (out->screenLayout&~ResTable_config::MASK_SCREENSIZE) + | ResTable_config::SCREENSIZE_XLARGE; + return true; } return false;