mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-05-07 19:23:52 +03:00
Add some stubs needed by android material library
This commit is contained in:
parent
ca975a0e7c
commit
960930a348
42 changed files with 428 additions and 19 deletions
19
src/api-impl/android/widget/AutoCompleteTextView.java
Normal file
19
src/api-impl/android/widget/AutoCompleteTextView.java
Normal file
|
@ -0,0 +1,19 @@
|
|||
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);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue