2023-08-17 10:46:24 +02:00
|
|
|
package android.widget;
|
|
|
|
|
|
2023-09-12 23:18:47 +02:00
|
|
|
import android.content.Context;
|
|
|
|
|
import android.util.AttributeSet;
|
2023-08-17 10:46:24 +02:00
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
|
|
|
|
|
public abstract class AdapterView extends ViewGroup {
|
|
|
|
|
|
2023-09-12 23:18:47 +02:00
|
|
|
public AdapterView(Context context) {
|
|
|
|
|
super(context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public AdapterView(Context context, AttributeSet attributeSet) {
|
|
|
|
|
super(context, attributeSet);
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-17 10:46:24 +02:00
|
|
|
public interface OnItemSelectedListener {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public interface OnItemClickListener {
|
|
|
|
|
}
|
2023-09-12 23:18:47 +02:00
|
|
|
|
|
|
|
|
public void setAdapter(SpinnerAdapter adapter) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSelection(int i) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOnItemSelectedListener(AdapterView.OnItemSelectedListener listener) {}
|
|
|
|
|
|
|
|
|
|
public void setSelection(int position, boolean animate) {}
|
2023-08-17 10:46:24 +02:00
|
|
|
}
|