mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am 6792a909
: Merge "Output caps debug code" into jb-dev
* commit '6792a909cd0da3db6a957cb2576b4d08f46a53b7': Output caps debug code
This commit is contained in:
commit
9978953e29
@ -635,6 +635,12 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||
Log.d(TAG, "onStartInputView: editorInfo:"
|
||||
+ String.format("inputType=0x%08x imeOptions=0x%08x",
|
||||
editorInfo.inputType, editorInfo.imeOptions));
|
||||
Log.d(TAG, "All caps = "
|
||||
+ ((editorInfo.inputType & InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS) != 0)
|
||||
+ ", sentence caps = "
|
||||
+ ((editorInfo.inputType & InputType.TYPE_TEXT_FLAG_CAP_SENTENCES) != 0)
|
||||
+ ", word caps = "
|
||||
+ ((editorInfo.inputType & InputType.TYPE_TEXT_FLAG_CAP_WORDS) != 0));
|
||||
}
|
||||
if (ProductionFlag.IS_EXPERIMENTAL) {
|
||||
ResearchLogger.latinIME_onStartInputViewInternal(editorInfo, mPrefs);
|
||||
|
Loading…
Reference in New Issue
Block a user