gpt4 book ai didi

android - CheckBox 不改变状态

转载 作者:行者123 更新时间:2023-11-30 04:12:17 29 4
gpt4 key购买 nike

我有一个:

public class MyList extends ListActivity {
SimpleAdapter simpleAdapter;

绑定(bind)到 ListView 是由 ViewBinder 完成的:

    simpleAdapter = new SimpleAdapter(this, getData(path),
R.layout.menu_row, new String[] {
..., "checked" }, new int[] {..., R.id.checkBox1 });

SimpleAdapter.ViewBinder viewBinder = new SimpleAdapter.ViewBinder() {
@Override
public boolean setViewValue(View view, Object data,
String textRepresentation) {
if (view.getId() == R.id.checkBox1) {
CheckBox checkBox = (CheckBox) view;
checkBox.setChecked(Boolean.parseBoolean((String) data));

我的 xml 看起来像这样,clickablefocusable 有助于将行视为一个行。

<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"
/>

我还有一个:

protected void onListItemClick(ListView l, View v, int position, long id) {

与点击事件交互。到目前为止效果很好,我的问题是当我单击一行时,CheckBox 不会更改其视觉状态。我能做什么?

最佳答案

我认为您想要查看的是 CheckedTextView,它显示一个复选框,当单击列表项时,复选框会发生变化

关于android - CheckBox 不改变状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10659158/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com