public class myView(){
AutoCompleteTextView textView;
public myView(COUNTRIES){
AutoCompleteTextView textView = new AutoCompleteTextView(this);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_item, COUNTRIES);
textView.setAdapter(adapter);
}
public AutoCompleteTextView getAutoView(){
return textView;
}
}
我将AutoCompleteTextView放在一个单独的类中,我试图用它来创建这个类的对象。但这不起作用,你能不能给我一个想法如何为android中的一些视图创建单独的类。