You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
Helper classes from ListView implementation are reused. The declarations have been moved to a new header file AdaperView.h
16 lines
291 B
Java
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);
|
|
}
|
|
|
|
} |