add more stubs

This commit is contained in:
Julian Winkler
2023-11-08 21:40:39 +01:00
parent 9f74ab811e
commit 72a8b3a047
21 changed files with 128 additions and 34 deletions

View File

@@ -186,6 +186,12 @@ public class TextView extends View {
public CharSequence getHint() {return "HINT";}
public int getMinHeight() {return 0;}
public int getMinWidth() {return 0;}
public void setMinHeight(int minHeight) {}
public void setHorizontallyScrolling(boolean whether) {}
public static interface OnEditorActionListener {
public abstract boolean onEditorAction(TextView v, int actionId, KeyEvent event);
}