am f9b1a092: Only include WEB_EDIT if there are more textfields.

Merge commit 'f9b1a092b6c86549a8257015a03ea59ebcd9a85e' into froyo-plus-aosp

* commit 'f9b1a092b6c86549a8257015a03ea59ebcd9a85e':
  Only include WEB_EDIT if there are more textfields.
This commit is contained in:
Leon Scroggins
2010-04-05 11:38:05 -07:00
committed by Android Git Automerger
2 changed files with 5 additions and 2 deletions

View File

@@ -818,8 +818,10 @@ import java.util.ArrayList;
boolean single = true;
boolean inPassword = false;
int maxLength = -1;
int inputType = EditorInfo.TYPE_CLASS_TEXT
| EditorInfo.TYPE_TEXT_VARIATION_WEB_EDIT_TEXT;
int inputType = EditorInfo.TYPE_CLASS_TEXT;
if (mWebView.nativeFocusCandidateHasNextTextfield()) {
inputType |= EditorInfo.TYPE_TEXT_VARIATION_WEB_EDIT_TEXT;
}
int imeOptions = EditorInfo.IME_FLAG_NO_EXTRACT_UI
| EditorInfo.IME_FLAG_NO_FULLSCREEN;
switch (type) {

View File

@@ -7168,6 +7168,7 @@ public class WebView extends AbsoluteLayout
private native int nativeFindAll(String findLower, String findUpper);
private native void nativeFindNext(boolean forward);
/* package */ native int nativeFocusCandidateFramePointer();
/* package */ native boolean nativeFocusCandidateHasNextTextfield();
private native boolean nativeFocusCandidateIsPassword();
private native boolean nativeFocusCandidateIsRtlText();
private native boolean nativeFocusCandidateIsTextInput();