summaryrefslogtreecommitdiffstats
path: root/libs/androidfw
diff options
context:
space:
mode:
authorAdam Lesinski <adamlesinski@google.com>2014-08-13 21:02:57 -0700
committerAdam Lesinski <adamlesinski@google.com>2014-08-14 21:35:37 +0000
commit8d5667d2a283bc9e35cfe8a7e77c9143c8957004 (patch)
tree543816072cca333b4515c741a693e01b07f576ec /libs/androidfw
parent4473ec5a5b39248377ce1596cdae83715b513413 (diff)
downloadframeworks_base-8d5667d2a283bc9e35cfe8a7e77c9143c8957004.zip
frameworks_base-8d5667d2a283bc9e35cfe8a7e77c9143c8957004.tar.gz
frameworks_base-8d5667d2a283bc9e35cfe8a7e77c9143c8957004.tar.bz2
Print xxxhdpi from ResTable_config::toString
Change-Id: I2e1a07649cb498c12023b198d8e50534f9d91840
Diffstat (limited to 'libs/androidfw')
-rw-r--r--libs/androidfw/ResourceTypes.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/androidfw/ResourceTypes.cpp b/libs/androidfw/ResourceTypes.cpp
index 7661d58..446004b 100644
--- a/libs/androidfw/ResourceTypes.cpp
+++ b/libs/androidfw/ResourceTypes.cpp
@@ -2691,6 +2691,9 @@ String8 ResTable_config::toString() const {
case ResTable_config::DENSITY_XXHIGH:
res.append("xxhdpi");
break;
+ case ResTable_config::DENSITY_XXXHIGH:
+ res.append("xxxhdpi");
+ break;
case ResTable_config::DENSITY_NONE:
res.append("nodpi");
break;