Files
android_translation_layer/src/api-impl/android/widget/Spinner.java
Julian Winkler 7ee4effb86 implement android.widget.Spinner using GtkDropDown
Helper classes from ListView implementation are reused. The declarations
have been moved to a new header file AdaperView.h
2024-03-22 21:02:22 +01:00

16 lines
291 B
Java

package android.widget;
import android.content.Context;
import android.util.AttributeSet;
public class Spinner extends AbsSpinner {
public Spinner(Context context) {
super(context);
}
public Spinner(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
}