Files
android_translation_layer/src/api-impl/android/widget/CompoundButton.java
Julian Winkler 82744e9e5e add bunch of new java APIs: mostly stubs or copied from AOSP
Many of these classes are only needed to be subclassed by androidx
support library, which is used in many android apps
2023-08-22 15:53:09 +02:00

18 lines
405 B
Java

package android.widget;
import android.content.Context;
import android.util.AttributeSet;
public abstract class CompoundButton extends Button {
public CompoundButton(Context context) {
super(context);
}
public CompoundButton(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
public static interface OnCheckedChangeListener {}
}