Files
android_translation_layer/src/api-impl/android/widget/CheckedTextView.java
Julian Winkler 97f8c2ed0f Add some missing APIs.
android.widget.Filter and android.webkit.MimeTypeMap are copied from
AOSP. Other new classes are only stub implementations.
2023-09-01 16:05:26 +02:00

19 lines
359 B
Java

package android.widget;
import android.content.Context;
import android.util.AttributeSet;
public class CheckedTextView extends TextView {
public CheckedTextView(Context context) {
super(context);
}
public CheckedTextView(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
public void setChecked(boolean checked) {}
}