Merge "Support flagNoPersonalizedLearning in layout XML" into oc-dev

am: e61d56fb70

Change-Id: If566134ba9f8ac40cf73a92745b45262681531c9
This commit is contained in:
Yohei Yukawa
2017-04-15 01:51:55 +00:00
committed by android-build-merger
2 changed files with 17 additions and 1 deletions

View File

@@ -155,7 +155,7 @@ public class EditorInfo implements InputType, Parcelable {
public static final int IME_ACTION_PREVIOUS = 0x00000007;
/**
* Flag of {@link #imeOptions}: used to request that the IME does not update any personalized
* Flag of {@link #imeOptions}: used to request that the IME should not update any personalized
* data such as typing history and personalized language model based on what the user typed on
* this text editing object. Typical use cases are:
* <ul>

View File

@@ -1371,6 +1371,22 @@
Corresponds to
{@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}. -->
<flag name="actionPrevious" value="0x00000007" />
<!-- Used to request that the IME should not update any personalized data such as typing
history and personalized language model based on what the user typed on this text
editing object. Typical use cases are:
<ul>
<li>When the application is in a special mode, where user's activities are expected
to be not recorded in the application's history. Some web browsers and chat
applications may have this kind of modes.</li>
<li>When storing typing history does not make much sense. Specifying this flag in
typing games may help to avoid typing history from being filled up with words that
the user is less likely to type in their daily life. Another example is that when
the application already knows that the expected input is not a valid word (e.g. a
promotion code that is not a valid word in any natural language).</li>
</ul>
<p>Applications need to be aware that the flag is not a guarantee, and some IMEs may
not respect it.</p> -->
<flag name="flagNoPersonalizedLearning" value="0x1000000" />
<!-- Used to request that the IME never go
into fullscreen mode. Applications need to be aware that the flag is not
a guarantee, and not all IMEs will respect it.