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

@@ -1,4 +1,6 @@
package android.widget;
public interface Checkable {
public void setChecked(boolean checked);
}