2

我使用自定义适配器创建了一个自定义 ListView。我有一个定义每一行的 xml 文件,每一行都有一个在这个 xml 文件中定义的复选框。我的应用程序是一个判断应用程序,其中 ListView 上的每个项目都是一个“任务”,计入一定数量的点。这个想法是,如果任务完成,那么法官点击复选框,该任务的分数被添加到总分中。

不幸的是,我没有办法让这个值与复选框相关联。有没有办法做到这一点?我会发布一些代码,我希望这足以让我了解我的问题。

该行的 XML 文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/score_list_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >


    <CheckBox
        android:id="@+id/score_box"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_alignParentRight="true"
        android:paddingTop="30dp"
        android:scaleX="2"
        android:scaleY="2"
        android:onClick="chkBoxClicked" />
    <TextView 
        android:id="@+id/subtask"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@id/score_box"
        android:paddingRight="30dp"
        android:textSize="20sp"/>
    <TextView
        android:id="@+id/max_points"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/subtask" />


</RelativeLayout>

来自创建列表的活动的方法:

    ...
public void createScoringList() {
    ListView scoreList = (ListView) findViewById(R.id.score_list);
    ListView scoreListPartial = (ListView) findViewById(R.id.score_list_partial);
    ArrayList<ScoringInfo> objList = new ArrayList<ScoringInfo>();  
    ArrayList<ScoringInfo> objListPartial = new ArrayList<ScoringInfo>();
    ScoringInfo scrInfo;

    for (int i = 0; i < subTaskList.size(); i++) {
        subtask_num = subTaskList.get(i).subtask_num;
        max_points = subTaskList.get(i).max_points;
        partial_points_allowed = subTaskList.get(i).partial_points_allowed;
        task_name = subTaskList.get(i).task_name;

        scrInfo = new ScoringInfo();
        scrInfo.setMaxPoints("Max Points: " + max_points);
        scrInfo.setSubtask(task_name);

        if (partial_points_allowed == 1)
            objListPartial.add(scrInfo);
        else
            objList.add(scrInfo);
    }
    scoreList.setAdapter(new ScoreListAdapter(objList , this));
    scoreListPartial.setAdapter(new ScoreListAdapter2(objListPartial, this));

}

如果为了清楚起见需要更多代码,请询问,我会提供。我只是不想用大量我认为可能不必要的代码来溢出问题。

4

1 回答 1

2

您可以将此值存储在您的模型中(我认为它称为 ScoringInfo),或者您可以使用setTag("score", value)方法将此值分配给每个复选框并通过调用读取它getTag("score")

您可以像这样在适配器类中设置和读取标签。您的适配器应实施OnClickListener和管理ScoringInfo项目列表。

public View getView(int position, View convertView, ViewGroup parent) {
    if (convertView == null) {
        convertView = LayoutInflater.from(this)
            .inflate(R.layout.<your_layout>, parent, false);
    }

    ScoringInfo item = this.getItem(position);

    CheckBox checkBox = (CheckBox) convertView.findViewById(R.id.checkbox_id);
    checkBox.setTag("score", item.max_points);
    checkBox.setOnClickListener(this);
}

public void onClick(View view) {
    if (view instanceof CheckBox) {
        boolean checked = ((CheckBox) view).isChecked();
        int score = view.getTag("score");
        // do the rest
    }
}
于 2013-08-19T21:27:35.243 回答