diff options
author | Tor Norbye <tnorbye@google.com> | 2012-10-15 20:31:30 -0700 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-10-16 10:18:18 -0700 |
commit | 32b243dd4b800771897ccc2e1d894ece1587bd67 (patch) | |
tree | b67c07de74f1d1c9536c077d0f174eea62915ea5 /common/src/com/android | |
parent | 18f09df5f4251f5c370ba9fb92f414379b1bc530 (diff) | |
download | sdk-32b243dd4b800771897ccc2e1d894ece1587bd67.zip sdk-32b243dd4b800771897ccc2e1d894ece1587bd67.tar.gz sdk-32b243dd4b800771897ccc2e1d894ece1587bd67.tar.bz2 |
Check for missing layout_width and layout_height attributes
Also looks at style declarations and attributes on include
tags to allow elements to either pick up sizes from styles
or from the including context.
Change-Id: I91a944805d8a906ff63b5a22f2faa876e7292c19
Diffstat (limited to 'common/src/com/android')
-rw-r--r-- | common/src/com/android/SdkConstants.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/com/android/SdkConstants.java b/common/src/com/android/SdkConstants.java index adbc3c8..cd0cdcd 100644 --- a/common/src/com/android/SdkConstants.java +++ b/common/src/com/android/SdkConstants.java @@ -699,7 +699,7 @@ public final class SdkConstants { public static final String ATTR_COLOR = "color"; //$NON-NLS-1$ // Attributes: Layout - public static final String ATTR_LAYOUT_RESOURCE_PREFIX = "layout_"; //$NON-NLS-1$ + public static final String ATTR_LAYOUT_RESOURCE_PREFIX = "layout_";//$NON-NLS-1$ public static final String ATTR_CLASS = "class"; //$NON-NLS-1$ public static final String ATTR_STYLE = "style"; //$NON-NLS-1$ public static final String ATTR_CONTEXT = "context"; //$NON-NLS-1$ |