You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
add more Java APIs needed for OctoDroid
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package android.widget;
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.util.AttributeSet;
|
||||
|
||||
public class AutoCompleteTextView extends EditText {
|
||||
@@ -16,4 +17,26 @@ public class AutoCompleteTextView extends EditText {
|
||||
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) {}
|
||||
|
||||
public void setThreshold(int threshold) {}
|
||||
|
||||
public int getImeOptions() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user