4

我的列表视图行有一个自定义布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/listSelector"
    android:orientation="horizontal">

    <LinearLayout
            android:id="@+id/checkboxSelection1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="3dip">

        <CheckBox android:id="@+id/checkbox1" />

        </LinearLayout>

    <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/checkbox1"
            android:orientation="vertical">

            <TextView
                android:id="@+id/text1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <TextView
                android:id="@+id/text2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
    </LinearLayout>
</RelativeLayout>

我还有一个适配器来获取要显示的适当数据;它确实如此。从 UI 的角度来看,它看起来像是我想要的。

但是,当我单击一个复选框时 - 没有任何反应。我想在后端存储我选择的项目列表(理想情况下在活动类中)。

在活动类的 onCreate 中,我有以下代码:

listView.setAdapter(adapter);

listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

// Click event for single list row
listView.setOnItemClickListener(new OnItemClickListener() 
{
    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) 
    {
        int i = 1;
    }
});

我有 int 1 = 1; 行在那里,这样我就可以添加一个断点来查看它是否被命中。它没有。我确定我做错了什么,就像它连接到列表视图行而不是复选框或其他东西 - 但我不确定如何将事件连接到复选框。

如果有人能指出我正确的方向,我将不胜感激。

谢谢

编辑:只是为了澄清

我在适配器中有这个:

taskChecked.setOnCheckedChangeListener(new OnCheckedChangeListener() 
{

    public void onCheckedChanged(CompoundButton arg0, boolean arg1) 
    {
        // TODO Auto-generated method stub
        int i = 1;
    }
});

这个断点确实被击中了。所以我只是想找出当一个复选框被选中或取消选中时,我如何在活动中引发一个事件,而不仅仅是适配器。

4

2 回答 2

2

不要这样做!我几乎疯了,试图让 ListView 中的小部件响应点击。不要将 Button、ImageButton 或 CheckBox 小部件放在 ListView 中。TextViews 和 ImageViews 是要走的路。尝试对该 CheckBox 的单击做出反应以查找它所在的 ListView 项目,然后向 Activity 发送一些内容可能对您的健康非常有害。我试过。

TextView + ImageView 可以在显示复选标记的图标和不显示复选标记的图标之间变化 - 模拟 CheckBox;

ImageView 本身可以模拟一个Button。

ImageView 需要设置为 focus=false。

首先,创建一个新类,其中包含要为 ListView 中的每个项目显示的字段。我制作了一个带有要显示的文本和一个布尔值来指示它是否被选中。将此类用于您的 ArrayList 和 ArrayAdapter。

然后为 ListView 添加 setOnItemClickListener(),然后使用位置查找项目视图,然后获取新类的项目并切换其布尔值。

在 MyArrayAdapter.getView 方法中,getItem(position) 返回该项目的新类的实例。使用布尔值来确定用于 ImageView 的图标。

当您需要知道 ListView 中哪些是“检查”和哪些不是“检查”时,您只需通过 ArrayList 并检查每个项目的布尔值。

于 2013-11-01T06:38:49.143 回答
1

我想到了。

在适配器中,我添加了以下内容: _activity 是从调用活动传递到构造函数的活动。根据 getView 中的位置和构建适配器时传入的数据,myObj 在代码的前面被声明为 final。

taskChecked.setOnCheckedChangeListener(new OnCheckedChangeListener() 
        {
            @Override
            public void onCheckedChanged(CompoundButton button, boolean checked) 
            {
                // Cast it so we can access the public functions
                MyActivity myActivity = (MyActivity) _activity;

                if (checked) // true if the checkbox is checked, false if unchecked
                {
                    myActivity.checkboxSelected(myObj);
                }
            }
        });

在活动中我添加了这个:

public void checkboxSelected(MyObj myObj)
{
    // Do stuff with myObj here
}

希望这可以帮助某人。

于 2013-11-01T06:45:16.957 回答