1
0
Fork 0

updated documentation

This commit is contained in:
sspanak 2023-08-29 11:43:15 +03:00 committed by Dimo Karaivanov
parent 81df61b900
commit 80f2103f8d
2 changed files with 6 additions and 3 deletions

View file

@ -35,12 +35,14 @@ import io.github.sspanak.tt9.ui.tray.SuggestionsBar;
public class TraditionalT9 extends KeyPadHandler {
// internal settings/data
private boolean isActive = false;
@NonNull private AppHacks appHacks = new AppHacks(null,null, null, null);
@NonNull private TextField textField = new TextField(null, null);
@NonNull private InputType inputType = new InputType(null, null);
@NonNull private final Handler autoAcceptHandler = new Handler(Looper.getMainLooper());
@Deprecated // migrate to "ModePassthrough" when "isActive" == "false"
private boolean isActive = false;
// input mode
private ArrayList<Integer> allowedInputModes = new ArrayList<>();
private InputMode mInputMode;