diff options
author | Deepanshu Gupta <deepanshu@google.com> | 2015-08-26 05:56:45 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-08-26 05:56:45 +0000 |
commit | b406070040d1370b6ef6154cba3965c4ab016d66 (patch) | |
tree | 967226f69842e0a8b248b50cd7fa4a103769a503 /tools/layoutlib | |
parent | 8bfc5a9d14000a436e54350099bd460f55418f27 (diff) | |
parent | a14ec6f450eaff09b6800fc40616a00cf4899df8 (diff) | |
download | frameworks_base-b406070040d1370b6ef6154cba3965c4ab016d66.zip frameworks_base-b406070040d1370b6ef6154cba3965c4ab016d66.tar.gz frameworks_base-b406070040d1370b6ef6154cba3965c4ab016d66.tar.bz2 |
am a14ec6f4: Change tools:list_item to listitem. [DO NOT MERGE]
* commit 'a14ec6f450eaff09b6800fc40616a00cf4899df8':
Change tools:list_item to listitem. [DO NOT MERGE]
Diffstat (limited to 'tools/layoutlib')
-rw-r--r-- | tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeConstants.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeConstants.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeConstants.java index 661c08b..0e3fd1f 100644 --- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeConstants.java +++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeConstants.java @@ -50,6 +50,8 @@ public class BridgeConstants { public final static String FILL_PARENT = "fill_parent"; public final static String WRAP_CONTENT = "wrap_content"; + // Should be kept in sync with LayoutMetadata.KEY_LV_ITEM in tools/adt/idea /** Attribute in the tools namespace used to specify layout manager for RecyclerView. */ - public static final String ATTR_LIST_ITEM = "list_item"; + @SuppressWarnings("SpellCheckingInspection") + public static final String ATTR_LIST_ITEM = "listitem"; } |