diff options
author | Tor Norbye <tnorbye@google.com> | 2012-09-17 15:31:34 -0700 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-09-17 16:21:36 -0700 |
commit | e97536a52fd5d3ee3d895d6605ccd723f7d5c3f6 (patch) | |
tree | c9341a6dfc33f2a7ecb5ec384ff62d8fb5569209 /common/src/com/android/SdkConstants.java | |
parent | e4dffb395e5b412583b687305cc8a11a8923bc60 (diff) | |
download | sdk-e97536a52fd5d3ee3d895d6605ccd723f7d5c3f6.zip sdk-e97536a52fd5d3ee3d895d6605ccd723f7d5c3f6.tar.gz sdk-e97536a52fd5d3ee3d895d6605ccd723f7d5c3f6.tar.bz2 |
Add labelFor lint check
Change-Id: If2b905197d5d81c6f98315a0d48ff37091e8282b
Diffstat (limited to 'common/src/com/android/SdkConstants.java')
-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 53277c5..1e1d14f 100644 --- a/common/src/com/android/SdkConstants.java +++ b/common/src/com/android/SdkConstants.java @@ -666,6 +666,8 @@ public final class SdkConstants { public static final String VIEW_SWITCHER = "ViewSwitcher"; //$NON-NLS-1$ public static final String EXPANDABLE_LIST_VIEW = "ExpandableListView"; //$NON-NLS-1$ public static final String HORIZONTAL_SCROLL_VIEW = "HorizontalScrollView"; //$NON-NLS-1$ + public static final String MULTI_AUTO_COMPLETE_TEXT_VIEW = "MultiAutoCompleteTextView"; //$NON-NLS-1$ + public static final String AUTO_COMPLETE_TEXT_VIEW = "AutoCompleteTextView"; //$NON-NLS-1$ // Tags: Drawables public static final String TAG_BITMAP = "bitmap"; //$NON-NLS-1$ @@ -721,6 +723,7 @@ public final class SdkConstants { public static final String ATTR_LAYOUT = "layout"; //$NON-NLS-1$ public static final String ATTR_ROW_COUNT = "rowCount"; //$NON-NLS-1$ public static final String ATTR_COLUMN_COUNT = "columnCount"; //$NON-NLS-1$ + public static final String ATTR_LABEL_FOR = "labelFor"; //$NON-NLS-1$ public static final String ATTR_BASELINE_ALIGNED = "baselineAligned"; //$NON-NLS-1$ public static final String ATTR_CONTENT_DESCRIPTION = "contentDescription"; //$NON-NLS-1$ public static final String ATTR_IME_ACTION_LABEL = "imeActionLabel"; //$NON-NLS-1$ |