25 lines
575 B
Java
25 lines
575 B
Java
package de.joel.zoomhelper;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
|
|
public class InstantAutoComplete extends androidx.appcompat.widget.AppCompatAutoCompleteTextView {
|
|
|
|
public InstantAutoComplete(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
public InstantAutoComplete(Context arg0, AttributeSet arg1) {
|
|
super(arg0, arg1);
|
|
}
|
|
|
|
public InstantAutoComplete(Context arg0, AttributeSet arg1, int arg2) {
|
|
super(arg0, arg1, arg2);
|
|
}
|
|
|
|
@Override
|
|
public boolean enoughToFilter() {
|
|
return false;
|
|
}
|
|
|
|
} |