自动完成文本视图的选定项目显示为简单的Textview?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动完成文本视图的选定项目显示为简单的Textview?相关的知识,希望对你有一定的参考价值。
我正在使用自动完成文本视图,它显示了数据库中的一些名称。我想在textview中显示一个名称,我从自动完成textview中选择了一个名称。这是我的代码:
ArrayList<String> s1 = new ArrayList<String>();
for (StudentInfo cn : studentInfo) {
s1.add(cn.getName());
}
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line,s1);
a1.setThreshold(1);
a1.setAdapter(adapter);
a1.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
}
});
试试这种方式:
AutoCompleteTextView a1 = (AutoCompleteTextView) findViewById(...);
StudentInfo[] s1 = studentInfo.toArray(new StudentInfo[studentInfo.size()]);
ArrayAdapter<StudentInfo> adapter = new ArrayAdapter<StudentInfo>(this, android.R.layout.simple_dropdown_item_1line, s1);
a1.setAdapter(adapter);
a1.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View arg1, int position, long arg3) {
Object item = parent.getItemAtPosition(position);
if (item instanceof StudentInfo){
StudentInfo student=(StudentInfo) item;
doSomethingWith(student);
}
}
});
ArrayAdapter使用StudentInfo的toString()方法生成显示的文本,因此您需要实现一个很好的toString方法。
这样,这种实现可以适应任何对象类型。
顺便说一句:我更喜欢android.R.layout.simple_spinner_dropdown_item而不是android.R.layout.simple_dropdown_item_1line
感谢Stefan Richter!我想补充说,在构造适配器时可以直接使用List<T>
:
AutoCompleteTextView autoCompleteTextView = dialogView.findViewById(R.id.autoComplete);
// Where mStudentsInfo is List<StudentInfo>
ArrayAdapter<StudentInfo> adapter = new ArrayAdapter<>(this, android.R.layout.simple_dropdown_item_1line, mStudentsInfo);
autoCompleteTextView.setAdapter(adapter);
autoCompleteTextView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Object item = parent.getItemAtPosition(position);
if (item instanceof StudentInfo) {
StudentInfo studentInfo = (StudentInfo) item;
// do something with the studentInfo object
}
}
});
而且不要忘记在toString()
中覆盖StudentInfo.class
方法:
public class StudentInfo {
....
@Override
public String toString() {
return studentName;
}
}
你的s1
包含来自database
的所有名字
a1.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int position,
long arg3) {
Log.d("your selected item",""+s1.get(position));
//s1.get(position) is name selected from autocompletetextview
// now you can show the value on textview.
}
});
希望这会对你有所帮助,
从视图对象arg1获取String的值。从提供给AutoCompleteTextView的ArrayList获取使用此String的项的位置。
在你的情况下,代码看起来像下面。
int selectedPos = s1.indexOf((String)((TextView)arg1).getText());
selectedPos是提供的ArrayList中字符串的位置。
重写模型类的toString
方法(本例中为StudenInfo)不是一个好主意!
如果您只想获取所选项目的文本,请使用以下代码:
autoCompleteView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
String selectedItem = (String) parent.getItemAtPosition(position);
// here is your selected item
}
});
从自动完成选择中获取选定项目,该项目使用用户定义的数据类型并设置相关list.following代码的值
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long arg3) {
int selectedPos = getYourList().indexOf((((TextView)view).getText()).toString());
SomeDAO dao = getSomeDaoList().get(selectedPos);
//do your code
}
注意:我已将onItemClick中的默认参数名称更改为arg0-parent,arg1-view,arg2-position和SomeDAO是用户定义的数据类型
使用父位是'0'
txt_search.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View arg1, int position, long id) {
Object item = parent.getItemAtPosition(0);
if (item instanceof MYData{
MYData data=(MYData) item;
String dd = data.getName();
}
}
});
以上是关于自动完成文本视图的选定项目显示为简单的Textview?的主要内容,如果未能解决你的问题,请参考以下文章