Definition at line 2384 of file TextInputPluginTest.java.
◆ TestImm()
io.flutter.plugin.editing.TextInputPluginTest.TestImm.TestImm |
( |
| ) |
|
|
inline |
◆ getCurrentInputMethodSubtype()
InputMethodSubtype io.flutter.plugin.editing.TextInputPluginTest.TestImm.getCurrentInputMethodSubtype |
( |
| ) |
|
|
inline |
◆ getLastCursorAnchorInfo()
CursorAnchorInfo io.flutter.plugin.editing.TextInputPluginTest.TestImm.getLastCursorAnchorInfo |
( |
| ) |
|
|
inline |
◆ getRestartCount()
int io.flutter.plugin.editing.TextInputPluginTest.TestImm.getRestartCount |
( |
View |
view | ) |
|
|
inline |
◆ getSelectionUpdateValues()
ArrayList< Integer > io.flutter.plugin.editing.TextInputPluginTest.TestImm.getSelectionUpdateValues |
( |
| ) |
|
|
inline |
◆ restartInput()
void io.flutter.plugin.editing.TextInputPluginTest.TestImm.restartInput |
( |
View |
view | ) |
|
|
inline |
◆ sendAppPrivateCommand()
void io.flutter.plugin.editing.TextInputPluginTest.TestImm.sendAppPrivateCommand |
( |
View |
view, |
|
|
String |
action, |
|
|
Bundle |
data |
|
) |
| |
|
inline |
Definition at line 2420 of file TextInputPluginTest.java.
2420 {
2422 }
void sendAppPrivateCommand(View view, String action, Bundle data)
std::shared_ptr< const fml::Mapping > data
◆ setCurrentInputMethodSubtype()
void io.flutter.plugin.editing.TextInputPluginTest.TestImm.setCurrentInputMethodSubtype |
( |
InputMethodSubtype |
inputMethodSubtype | ) |
|
|
inline |
◆ setEventHandler()
void io.flutter.plugin.editing.TextInputPluginTest.TestImm.setEventHandler |
( |
EventHandler |
eventHandler | ) |
|
|
inline |
◆ setTrackSelection()
void io.flutter.plugin.editing.TextInputPluginTest.TestImm.setTrackSelection |
( |
boolean |
val | ) |
|
|
inline |
◆ updateCursorAnchorInfo()
void io.flutter.plugin.editing.TextInputPluginTest.TestImm.updateCursorAnchorInfo |
( |
View |
view, |
|
|
CursorAnchorInfo |
cursorAnchorInfo |
|
) |
| |
|
inline |
◆ updateSelection()
void io.flutter.plugin.editing.TextInputPluginTest.TestImm.updateSelection |
( |
View |
view, |
|
|
int |
selStart, |
|
|
int |
selEnd, |
|
|
int |
candidatesStart, |
|
|
int |
candidatesEnd |
|
) |
| |
|
inline |
Definition at line 2431 of file TextInputPluginTest.java.
2432 {
2433 if (trackSelection) {
2434 this.selectionUpdateValues.add(selStart);
2435 this.selectionUpdateValues.add(selEnd);
2436 this.selectionUpdateValues.add(candidatesStart);
2437 this.selectionUpdateValues.add(candidatesEnd);
2438 }
2439 }
The documentation for this class was generated from the following file: