<ListView
android:id="@+id/category_choices"
android:choiceMode="singleChoice"
android:layout_width="400dp"
android:layout_height="wrap_content">
</ListView>
<EditText
android:id="@+id/other_please_specify"
android:singleLine="true"
android:layout_height="wrap_content" android:layout_width="326dp"/>
ArrayAdapter<String> adapter = new ArrayAdapter<String>(getContext(),
android.R.layout.simple_list_item_single_choice, categories);
listView.setAdapter(adapter);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> myAdapter, View myView, int myItemInt, long mylng) {
selectedItem = (String) (listView.getItemAtPosition(myItemInt));
}
});
我尝试了以下操作,但它不起作用
editText.setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(View view, int i, KeyEvent keyEvent) {
if (selectedItem != null) {
int checkedItem = listView.getCheckedItemPosition();
listView.setItemChecked(checkedItem, false);
selectedItem = null;
}
return false;
}
});
答案 0 :(得分:1)
您必须使用Text Watcher编辑文本来收听输入的文字:
editText.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
// do your stuffs here
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}
@Override
public void afterTextChanged(Editable s) {
Log.e("TextWatcherTest", "afterTextChanged:\t" + s.toString());
}
});