diff options
author | Tor Norbye <tnorbye@google.com> | 2012-10-04 18:55:18 -0700 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-10-05 08:04:07 -0700 |
commit | 6cb5c7f7141a08fd355bb92c6a4153140400890b (patch) | |
tree | a2df993be817856f98eefd44c01f5ef56c8aec34 /common | |
parent | c3e3de0a15a83422d3c43f536a45e53e8156bfe5 (diff) | |
download | sdk-6cb5c7f7141a08fd355bb92c6a4153140400890b.zip sdk-6cb5c7f7141a08fd355bb92c6a4153140400890b.tar.gz sdk-6cb5c7f7141a08fd355bb92c6a4153140400890b.tar.bz2 |
Check notification and action bar icons
These icons should not use color (and in the case of notification
icons, be white).
Change-Id: I32b9422735830a01bb069b90a5ad5a76d7aeb5de
Diffstat (limited to 'common')
-rw-r--r-- | common/src/com/android/SdkConstants.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/src/com/android/SdkConstants.java b/common/src/com/android/SdkConstants.java index badd343..7102734 100644 --- a/common/src/com/android/SdkConstants.java +++ b/common/src/com/android/SdkConstants.java @@ -934,6 +934,10 @@ public final class SdkConstants { public static final String REFERENCE_STYLE = "style/"; //$NON-NLS-1$ public static final String PREFIX_ANDROID = "android:"; //$NON-NLS-1$ + // Resource Types + public static final String DRAWABLE_TYPE = "drawable"; //$NON-NLS-1$ + public static final String MENU_TYPE = "menu"; //$NON-NLS-1$ + // Packages public static final String ANDROID_PKG_PREFIX = "android."; //$NON-NLS-1$ public static final String WIDGET_PKG_PREFIX = "android.widget."; //$NON-NLS-1$ |