X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/450d85aded79a172921f28e5f3b6cf447bb97f29..26bee7e6258deed92e270ab95d7de54cc55edb85:/AaptAssets.cpp diff --git a/AaptAssets.cpp b/AaptAssets.cpp index cf07c42..e4f447e 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;