mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-04-28 20:27:58 +03:00
56 lines
No EOL
1.1 KiB
Java
56 lines
No EOL
1.1 KiB
Java
package android.widget;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.util.AttributeSet;
|
|
|
|
public class AutoCompleteTextView extends EditText {
|
|
|
|
private ListAdapter adapter;
|
|
|
|
public interface OnDismissListener {
|
|
}
|
|
|
|
public AutoCompleteTextView(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
public AutoCompleteTextView(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
}
|
|
|
|
public void setDropDownBackgroundDrawable(Drawable drawable) {}
|
|
|
|
public int getThreshold() {
|
|
return 0;
|
|
}
|
|
|
|
public void setOnItemClickListener(AdapterView.OnItemClickListener listener) {}
|
|
|
|
public void setOnItemSelectedListener(AdapterView.OnItemSelectedListener listener) {}
|
|
|
|
public int getDropDownAnchor() {
|
|
return 0;
|
|
}
|
|
|
|
public void setAdapter(ListAdapter adapter) {
|
|
this.adapter = adapter;
|
|
}
|
|
|
|
public ListAdapter getAdapter() {
|
|
return adapter;
|
|
}
|
|
|
|
public void setThreshold(int threshold) {}
|
|
|
|
public int getImeOptions() {
|
|
return 0;
|
|
}
|
|
|
|
public int getListSelection() {
|
|
return 0;
|
|
}
|
|
|
|
public void performCompletion() {}
|
|
|
|
} |