diff options
author | Tor Norbye <tnorbye@google.com> | 2012-09-24 20:57:33 -0700 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-09-25 08:16:54 -0700 |
commit | 52e3c4ebddd534c0c5f10bce8952a6266df1e140 (patch) | |
tree | b04634c2d808298d35e9b6444b8dd29b5586dcf7 /common | |
parent | e41d71e6d66d7fc3ac8a502dabf3f6be93b9403d (diff) | |
download | sdk-52e3c4ebddd534c0c5f10bce8952a6266df1e140.zip sdk-52e3c4ebddd534c0c5f10bce8952a6266df1e140.tar.gz sdk-52e3c4ebddd534c0c5f10bce8952a6266df1e140.tar.bz2 |
Ensure that themes are always style-prefixed
Plus a few other minor tweaks/bug fixes
Change-Id: Ic02db9123674ebfbc8977a94d1da4826ec13fb9b
Diffstat (limited to 'common')
-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 8c798c8..04fa987 100644 --- a/common/src/com/android/SdkConstants.java +++ b/common/src/com/android/SdkConstants.java @@ -945,7 +945,7 @@ public final class SdkConstants { public static final String ATTR_REF_PREFIX = "?attr/"; //$NON-NLS-1$ public static final String R_PREFIX = "R."; //$NON-NLS-1$ public static final String R_ID_PREFIX = "R.id."; //$NON-NLS-1$ - public static final String R_LAYOUT_RESOURCE_PREFIX = "R.layout."; //$NON-NLS-1$ + public static final String R_LAYOUT_RESOURCE_PREFIX = "R.layout."; //$NON-NLS-1$ public static final String R_DRAWABLE_PREFIX = "R.drawable."; //$NON-NLS-1$ public static final String R_ATTR_PREFIX = "R.attr."; //$NON-NLS-1$ |