我有一个AutoCompleteTextView。我通过扩展CursorAdapter来设置它的适配器。 从下拉列表中选择一个选项后,我想知道所选项目或项目的位置。至少,我想要一个id来在Sqlite中获取更多数据。 我怎么能这样做?
答案 0 :(得分:1)
只需覆盖AutoCompleteTextView的OnItemClickedListener,即可在下拉列表或SQLite行position
中找到该项的id
:
autoCompleteTextView.setOnItemClickedListener(new OnItemSelectedListener() {
@Override
public void onItemClicked(AdapterView<?> parent, View view, int position, long id) {
// Do whatever you want with the position or id
}
});