2011-04-25 11:00:04
AutoCompleteTextView 是Android中输入提示框 虽然现在的输入法越来越强大,但还是让用户输入越方便越好
下面来看看代码
1.在main.xml中创建一个 AutoCompleteTextView 布局
2.为 AutoCompleteTextView 中的数据提供布局res/item_list.xml
3.AutoCompleteText.java
在 ArrayAdapter中为AutoCompleteTextView提供数据源的另一种方法是在string.xml中添加string-array 如
获取数据
String[] countries = getResources.getStringArray(R.array.countr);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,R.layout.item_list ,country );