diff options
author | Tor Norbye <tnorbye@google.com> | 2012-11-10 18:35:27 -0800 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-11-16 19:43:07 +0100 |
commit | 40457035c42951d6c23186ea3277d8e4ce4d2ef4 (patch) | |
tree | 7de69188a3668bac9260b4bb69a2120af8e0f96d /common/src/com/android | |
parent | d06956dc6896d1d38cda87d2bd58c3700cfe3e44 (diff) | |
download | sdk-40457035c42951d6c23186ea3277d8e4ce4d2ef4.zip sdk-40457035c42951d6c23186ea3277d8e4ce4d2ef4.tar.gz sdk-40457035c42951d6c23186ea3277d8e4ce4d2ef4.tar.bz2 |
Add lint check for making dynamic text views selectable
Change-Id: I9cc31e8b3094f830e785b96b46f384206074703c
Diffstat (limited to 'common/src/com/android')
-rw-r--r-- | common/src/com/android/SdkConstants.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/src/com/android/SdkConstants.java b/common/src/com/android/SdkConstants.java index f51000f..a113875 100644 --- a/common/src/com/android/SdkConstants.java +++ b/common/src/com/android/SdkConstants.java @@ -750,6 +750,9 @@ public final class SdkConstants { public static final String ATTR_ENABLED = "enabled"; //$NON-NLS-1$ public static final String ATTR_SINGLE_LINE = "singleLine"; //$NON-NLS-1$ public static final String ATTR_SCALE_TYPE = "scaleType"; //$NON-NLS-1$ + public static final String ATTR_VISIBILITY = "visibility"; //$NON-NLS-1$ + public static final String ATTR_TEXT_IS_SELECTABLE = + "textIsSelectable"; //$NON-NLS-1$ public static final String ATTR_IMPORTANT_FOR_ACCESSIBILITY = "importantForAccessibility"; //$NON-NLS-1$ |