diff options
Diffstat (limited to 'common/src/com/android/resources/Density.java')
-rw-r--r-- | common/src/com/android/resources/Density.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/src/com/android/resources/Density.java b/common/src/com/android/resources/Density.java index f838de4..610789a 100644 --- a/common/src/com/android/resources/Density.java +++ b/common/src/com/android/resources/Density.java @@ -72,6 +72,7 @@ public enum Density implements ResourceEnum { return null; } + @Override public String getResourceValue() { return mValue; } @@ -88,10 +89,12 @@ public enum Density implements ResourceEnum { return ""; } + @Override public String getShortDisplayValue() { return mDisplayValue; } + @Override public String getLongDisplayValue() { return mDisplayValue; } @@ -120,10 +123,12 @@ public enum Density implements ResourceEnum { return null; } + @Override public boolean isFakeValue() { return false; } + @Override public boolean isValidValueForDevice() { return this != NODPI; // nodpi is not a valid config for devices. } |