0
我使用淹沒菜單創建輸入,該菜單使用用戶輸入從服務器獲取數據並將數據添加到列表中。AutoCompleteTextView監聽器
我得到這個代碼:
from_autocompl = (AutoCompleteTextView)rootView.findViewById(R.id.from_autocompl);
from_autocompl.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
new JSONParse().execute();
if (ImDoneWithJSON == 1)
{
ArrayAdapter<List_From_JSON> adapter = new ArrayAdapter<List_From_JSON>(
this, android.R.layout.simple_list_item_1, data);
from_autocompl.setAdapter(adapter);
ImDoneWithJSON = 0;
}
}
});
現在,我得到的問題是: 我需要知道的是點擊這在下拉列表中的項目。
通常它是通過使用onItemClick
做,但我已經有TextWatch
聽衆加入到from_autocompl
和Android允許在默認情況下只有一個聽衆,現在我想知道如何做到這一點。如何通過這個?