summaryrefslogtreecommitdiffstats
path: root/core/java/android
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2012-05-10 21:29:33 -0700
committerJeff Brown <jeffbrown@google.com>2012-05-11 12:32:56 -0700
commit2f0957607411b99810226ad38d59cf18718b86d0 (patch)
tree02c124b552f1f206498e50f3532c5140c9fda8c4 /core/java/android
parent3816174b3bea63eb355a0aa212c6b51e9435627b (diff)
downloadframeworks_base-2f0957607411b99810226ad38d59cf18718b86d0.zip
frameworks_base-2f0957607411b99810226ad38d59cf18718b86d0.tar.gz
frameworks_base-2f0957607411b99810226ad38d59cf18718b86d0.tar.bz2
Rename kcm attribute to keyboardLayout.
Bug: 6478076 Change-Id: I7fc0d8eb36d03a628d070f8fd6ea1e1464b1a163
Diffstat (limited to 'core/java/android')
-rwxr-xr-xcore/java/android/hardware/input/InputManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/hardware/input/InputManager.java b/core/java/android/hardware/input/InputManager.java
index 5ba1850..6448b55 100755
--- a/core/java/android/hardware/input/InputManager.java
+++ b/core/java/android/hardware/input/InputManager.java
@@ -96,14 +96,14 @@ public final class InputManager {
* &lt;keyboard-layouts xmlns:android="http://schemas.android.com/apk/res/android">
* &lt;keyboard-layout android:name="keyboard_layout_english_us"
* android:label="@string/keyboard_layout_english_us_label"
- * android:kcm="@raw/keyboard_layout_english_us" />
+ * android:keyboardLayout="@raw/keyboard_layout_english_us" />
* &lt;/keyboard-layouts>
* </p><p>
* The <code>android:name</code> attribute specifies an identifier by which
* the keyboard layout will be known in the package.
* The <code>android:label</code> attributes specifies a human-readable descriptive
* label to describe the keyboard layout in the user interface, such as "English (US)".
- * The <code>android:kcm</code> attribute refers to a
+ * The <code>android:keyboardLayout</code> attribute refers to a
* <a href="http://source.android.com/tech/input/key-character-map-files.html">
* key character map</a> resource that defines the keyboard layout.
* </p>