Add some missing APIs.

android.widget.Filter and android.webkit.MimeTypeMap are copied from
AOSP. Other new classes are only stub implementations.
This commit is contained in:
Julian Winkler
2023-09-01 12:55:04 +02:00
parent 6c2a3adae6
commit 97f8c2ed0f
30 changed files with 1165 additions and 38 deletions

View File

@@ -4,14 +4,16 @@ 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 CompoundButton(Context context) {
super(context);
}
public CompoundButton(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
public static interface OnCheckedChangeListener {}
public static interface OnCheckedChangeListener {}
public void setOnCheckedChangeListener(OnCheckedChangeListener listener) {}
}