mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-04-29 12:48:03 +03:00
19 lines
370 B
Java
19 lines
370 B
Java
![]() |
package android.widget;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.util.AttributeSet;
|
||
|
|
||
|
public class AutoCompleteTextView extends TextView {
|
||
|
|
||
|
public interface OnDismissListener {
|
||
|
}
|
||
|
|
||
|
public AutoCompleteTextView(Context context) {
|
||
|
super(context);
|
||
|
}
|
||
|
|
||
|
public AutoCompleteTextView(Context context, AttributeSet attributeSet) {
|
||
|
super(context, attributeSet);
|
||
|
}
|
||
|
|
||
|
}
|