implement android.widget.EditText using GtkEntry

This commit is contained in:
Julian Winkler 2023-08-22 13:55:56 +02:00
parent f9a85017c1
commit 4434de4a58
7 changed files with 299 additions and 2 deletions

View file

@ -34,7 +34,7 @@ public class TextView extends View {
@Override
protected native long native_constructor(Context context, AttributeSet attrs);
public final void setText(CharSequence text) {
public void setText(CharSequence text) {
if (text == null) {
native_setText("NULL");
return;