如何计算列表视图中勾选的复选框的数量

时间:2015-11-26 00:55:54

标签: java android list listview checkbox

我有一个处理列表视图的自定义数组适配器。 每行有两个复选框。总共有五行。 我希望能够计算勾选的复选框的数量,然后在Stand1

中显示此数字

所以基本上项目布局就像这样

在stand1里面有一个列表视图和一个文本视图。 stand1.java调用一个名为CustomArrayAdaptor的数组适配器。 我希望能够计算单击的复选框的数量并将该数据发送回stand1

我对Android开发很新,所以如果有人能够把我推向正确的方向,那就太棒了。

这是我的代码

Stand1.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">

<ListView
    android:layout_width="fill_parent"
    android:layout_height="446dp"
    android:id="@+id/Stand1list"
    android:scrollIndicators="right"
    android:smoothScrollbar="true">


</ListView>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Send Score To Databse"
        android:id="@+id/sendtodb"
        android:textSize="12dp"
        android:clickable="true"
        android:layout_below="@+id/Stand1list"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="8/10"
        android:id="@+id/Score"
        android:layout_marginLeft="33dp"
        android:layout_marginStart="33dp"
        android:layout_alignBottom="@+id/sendtodb"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_marginBottom="10dp" />

Row_Layout1.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="20dp">


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/textelement"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:textSize="30dp"
        android:textStyle="bold"
        android:longClickable="false" />

    <CheckBox
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:id="@+id/Checkbox1"
        android:button="@drawable/checkboxcustom"
        android:layout_marginLeft="50dp" />
    <CheckBox

        android:button="@drawable/checkboxcustom"
        android:id="@+id/Checkbox2"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_marginLeft="50dp" />

</LinearLayout>

Stand1.java

public class Stand1 extends Fragment {
    ListView mList;

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View root = inflater.inflate(R.layout.stand1,container,false);
        mList = (ListView) root.findViewById(R.id.Stand1list);
        return root;
    }

    public void onActivityCreated(Bundle savedInstanceState)
    {
        super.onActivityCreated(savedInstanceState);
        populateListView();
    }

    private void populateListView() {
        String[] pair = {"Pair 1","Pair 2","Pair 3","Pair 4","Pair 5"};

        //build adapter
        ArrayAdapter<String> adapter = new CustomArrayAdaptor(getActivity(),pair);

        mList.setAdapter(adapter);
    }
}

CustomArrayAdaptor.java

public class CustomArrayAdaptor extends ArrayAdapter<String>{


    public CustomArrayAdaptor(Context context, String [] Pairs) {
        super(context, R.layout.row_layout1, Pairs);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        LayoutInflater inflater = LayoutInflater.from(getContext());
        View CustomView = inflater.inflate(R.layout.row_layout1, parent, false);
        String stringelement = getItem(position);
        TextView Text= (TextView)CustomView.findViewById(R.id.textelement);

        Text.setText(stringelement);
        return CustomView;
    }




}

谢谢民众

2 个答案:

答案 0 :(得分:3)

我在您的 CustomArrayAdaptor 中添加了一些内容并进行了测试,见下文:

    public class CustomArrayAdapter extends ArrayAdapter<String> {

    int checkAccumulator;

    public CustomArrayAdapter(Context context, String [] Pairs) {
        super(context, R.layout.row_layout1, Pairs);
        checkAccumulator = 0;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        LayoutInflater inflater = LayoutInflater.from(getContext());
        View customView = inflater.inflate(R.layout.row_layout1, parent, false);
        String stringelement = getItem(position);
        TextView Text = (TextView) customView.findViewById(R.id.textelement);

        CheckBox checkBox1 = (CheckBox) customView.findViewById(R.id.Checkbox1);
        CheckBox checkBox2 = (CheckBox) customView.findViewById(R.id.Checkbox2);

        CompoundButton.OnCheckedChangeListener checkListener = new CompoundButton.OnCheckedChangeListener() {
                    @Override
                    public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                        countCheck(isChecked);
                        Log.i("MAIN", checkAccumulator + "");
                    }
                };

        checkBox1.setOnCheckedChangeListener(checkListener);
        checkBox2.setOnCheckedChangeListener(checkListener);

        Text.setText(stringelement);
        return customView;
    }

   private void countCheck(boolean isChecked) {

        checkAccumulator += isChecked ? 1 : -1 ;
    }
}
  1. 添加 int checkAccumulator 以跟踪已点击的项目数。
  2. 添加了两个 CheckBox 视图,以便跟踪检查。
  3. 添加 CompoundButton.OnCheckedChangeListener ,每次检查/取消选中任何复选框时,都会调用新的 countCheck 方法。我们通过 isChecked 布尔来跟踪我们是否需要在 checkAccumulator 中添加或减去。
  4. 添加了 countCheck 函数,该函数根据布尔值添加或减去 1 。对于所有那些不习惯的人,对于混淆的代码感到抱歉?条件它基本上是说如果为真加1,否则加-1。
  5. 我不确定您要对支票计数做什么,所以我添加了 Log.i(&#34; MAIN&#34 ;, checkAccumulator +&#34;&#34;); 这样您就可以观看 Android Monitor 以确保它实际正常工作。
  6. 应该适合你。

答案 1 :(得分:2)

首先,您应该在适配器中回收您的视图:

    LayoutInflater inflater = LayoutInflater.from(getContext());

    if (convertView == null) {
        convertView = inflater.inflate(R.layout.row_layout1, parent, false);
    }

之后,我认为您应该保存数据源中每个复选框的状态,或者只保留一个列表,与对数组相同的大小,并使用从getView获得的位置将其保存在那里。