summaryrefslogtreecommitdiffstats
path: root/core/java/android/inputmethodservice/KeyboardView.java
diff options
context:
space:
mode:
authorDianne Hackborn <>2009-04-09 12:32:19 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-04-09 12:32:19 -0700
commit48276ab989a4d775961ce30a43635a317052672a (patch)
treea3cb21b999933c98e5dd7d764b085938f8be87bf /core/java/android/inputmethodservice/KeyboardView.java
parent5eabbd9f27b5684508b5f5f1f99030c67984ae81 (diff)
downloadframeworks_base-48276ab989a4d775961ce30a43635a317052672a.zip
frameworks_base-48276ab989a4d775961ce30a43635a317052672a.tar.gz
frameworks_base-48276ab989a4d775961ce30a43635a317052672a.tar.bz2
AI 145383: API review: clean up a bunch of @hides that have been pending API review.
Either expose them, or official hide them with an explanation for why. BUG=1779439 Automated import of CL 145383
Diffstat (limited to 'core/java/android/inputmethodservice/KeyboardView.java')
-rwxr-xr-xcore/java/android/inputmethodservice/KeyboardView.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/core/java/android/inputmethodservice/KeyboardView.java b/core/java/android/inputmethodservice/KeyboardView.java
index 9b8b5db..65c9893 100755
--- a/core/java/android/inputmethodservice/KeyboardView.java
+++ b/core/java/android/inputmethodservice/KeyboardView.java
@@ -486,19 +486,17 @@ public class KeyboardView extends View implements View.OnClickListener {
}
/**
- * Enables or disables proximity correction. When enabled, {@link OnKeyboardActionListener#onKey}
- * gets called with key codes for adjacent keys. Otherwise only the primary code is returned.
+ * When enabled, calls to {@link OnKeyboardActionListener#onKey} will include key
+ * codes for adjacent keys. When disabled, only the primary key code will be
+ * reported.
* @param enabled whether or not the proximity correction is enabled
- * @hide Pending API Council approval
*/
public void setProximityCorrectionEnabled(boolean enabled) {
mProximityCorrectOn = enabled;
}
/**
- * Returns the enabled state of the proximity correction.
- * @return true if proximity correction is enabled, false otherwise
- * @hide Pending API Council approval
+ * Returns true if proximity correction is enabled.
*/
public boolean isProximityCorrectionEnabled() {
return mProximityCorrectOn;