取消选中/取消选择singleChoice ListView

时间:2012-07-06 11:03:47

标签: java android user-interface android-listview user-interaction

组合 - 列出可以写入未列出值的选项

<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中输入任何文本时清除Radiobutton选择?

我尝试了以下操作,但它不起作用

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;
    }
});

1 个答案:

答案 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());
        }
    });