implement CompoundButton using GtkSwitch

This commit is contained in:
Julian Winkler 2024-02-15 21:08:13 +01:00
parent d2725a73c9
commit 2d6694d695
8 changed files with 306 additions and 13 deletions

View file

@ -26,7 +26,7 @@ public class Button extends TextView {
protected native void native_setOnClickListener(long widget, OnClickListener l);
@Override
public final void setText(CharSequence text) {
public void setText(CharSequence text) {
native_setText(widget, String.valueOf(text));
}