Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/227.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/sharepoint/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在android listview中重复选择复选框_Android - Fatal编程技术网

在android listview中重复选择复选框

在android listview中重复选择复选框,android,Android,我在listview中使用复选框,并且我也能够获得所选的值,但我的问题是当选中第一个位置复选框时,自动选中第七个位置复选框。会出现什么问题,请建议我如何解决这个问题 公共类TransactionaAdapter扩展了BaseAdapter{ LayoutInflater inflator; String veh_reg_no; String fuel_qty, total_amt; public TransactionAdapter(Context contex

我在listview中使用复选框,并且我也能够获得所选的值,但我的问题是当选中第一个位置复选框时,自动选中第七个位置复选框。会出现什么问题,请建议我如何解决这个问题

公共类TransactionaAdapter扩展了BaseAdapter{

    LayoutInflater inflator;
    String veh_reg_no;
    String fuel_qty, total_amt;

    public TransactionAdapter(Context context) {
        inflator = getLayoutInflater();
    }

    @Override
    public int getCount() {

        if (pso_transaction_list.size() != 0)
            return pso_transaction_list.size();
        return 0;

    }

    @Override
    public Object getItem(int position) {
        return position;
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {


        final Viewholder holder;
        if(convertView==null) {
            convertView = inflator.inflate(R.layout.pso_transation_layout, parent, false);

            holder=new Viewholder();

            holder.vT_tl_regnumber = (TextView) convertView.findViewById(R.id.vT_psotl_regnumber);
            holder.vT_tl_drivername = (TextView) convertView.findViewById(R.id.vT_psotl_drivername);
            holder.vT_tl_quantity = (TextView) convertView.findViewById(R.id.vT_psotl_quantity);
            holder.vT_tl_totalCost = (TextView) convertView.findViewById(R.id.vT_psotl_totalCost);
            holder.vT_psotl_payment = (TextView) convertView.findViewById(R.id.vT_psotl_payment);
            holder.vI_psotl_statusimg = (ImageView) convertView.findViewById(R.id.vI_psotl_statusimg);
            holder.vI_pha_Next = (ImageView) convertView.findViewById(R.id.vI_pha_Next);
            holder.vI_pha_select = (CheckBox) convertView.findViewById(R.id.vI_pha_select);
            holder.vT_psotl_unit = (TextView) convertView.findViewById(R.id.vT_psotl_unit);
            holder.vT_pha_rsr = (TextView) convertView.findViewById(R.id.vT_pha_rsr);
            holder.vL_psotl_nextlayout = (LinearLayout) convertView.findViewById(R.id.vL_psotl_nextlayout);
            holder.vL_psotl_checkboxlayout = (LinearLayout) convertView.findViewById(R.id.vL_psotl_checkboxlayout);
            convertView.setTag(holder);
        }else{
            holder = (Viewholder) convertView.getTag();
            holder.vI_pha_select.setOnCheckedChangeListener(null);

        }

        if (pso_transaction_list.get(position).getPaymentMode().getId() == 1 && pso_transaction_list.get(position).getWFStatus() == 7) {
            String pmt_status = "C/A | RCVD ";
            holder.vT_psotl_payment.setText(pmt_status);
        } else if (pso_transaction_list.get(position).getPaymentMode().getId() == 1) {
            holder.vT_psotl_payment.setText("C/A");
        } else {
            holder.vT_psotl_payment.setText("P/G");
        }

        if (pso_transaction_list.get(position).getFuelStations().getCountry() != null) {
            String[] currency = Getlocationaddress_by_address.currency(pso_transaction_list.get(position).getFuelStations().getCountry(), PsomytransactionlistActivity.this);
            holder.vT_pha_rsr.setText(" " + currency[0] + " ");
            holder.vT_psotl_unit.setText(" " + currency[1]);
        }




        holder.vI_pha_select.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton compoundButton, boolean isChecked{

                if (isChecked) {

                    selected_list_payment.add(pso_transaction_list.get(position).getPaymentMode().getId() + "");
                    selected_list.add(pso_transaction_list.get(position).getId() + "");
                    selecteddetails.add(pso_transaction_list.get(position).getVehicleNo());
                    payment_status.add(pso_transaction_list.get(position).getWFStatus() + "");

                } else {

                    selected_list.remove(pso_transaction_list.get(position).getId() + "");
                    selected_list_payment.remove(pso_transaction_list.get(position).getPaymentMode().getId() + "");
                    selecteddetails.remove(pso_transaction_list.get(position).getVehicleNo());
                    payment_status.remove(pso_transaction_list.get(position).getWFStatus() + "");
                }
            }
        });


        veh_reg_no = pso_transaction_list.get(position).getVehicleNo();
        holder.vT_tl_regnumber.setText(veh_reg_no);
        holder.vT_tl_drivername.setText(pso_transaction_list.get(position).getDriver().getName());
        fuel_qty = " " + pso_transaction_list.get(position).getQuantity() + "";
        holder.vT_tl_quantity.setText(fuel_qty);
        total_amt = pso_transaction_list.get(position).getTotalPrice() + "";
        holder.vT_tl_totalCost.setText(total_amt);

        holder.vL_psotl_nextlayout.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent trans_intent = new Intent(PsomytransactionlistActivity.this, Psotransactiondetails.class);
                trans_intent.putExtra("trans_details_position", position);
                startActivity(trans_intent);
            }
        });
        return convertView;
    }
}


public static class Viewholder{

    public TextView vT_tl_regnumber, vT_tl_drivername, vT_tl_quantity, vT_tl_totalCost, vT_psotl_payment, vT_psotl_unit, vT_pha_rsr;
    public ImageView vI_psotl_statusimg, vI_pha_Next;
    public LinearLayout vL_psotl_nextlayout, vL_psotl_checkboxlayout;
    public CheckBox vI_pha_select;
}

试着这样做。这对我很有效

public class CustomAdapter extends BaseAdapter {
    private final LayoutInflater inflater;
    private final Context context;
    private List<ModelPooja> listData;

    public CustomAdapter(Context mainActivity, List<ModelPooja> listData) {
        context = mainActivity;
        this.listData = listData;
        inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    @Override
    public int getCount() {
        return listData.size();
    }

    @Override
    public Object getItem(int position) {
        return listData.get(position);
    }

    @Override
    public long getItemId(int position) {
        return 0;
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {
        final ViewHolder holder;

        if (convertView == null) {
            holder = new ViewHolder();
            convertView = inflater.inflate(R.layout.list_item_poojaselection, null);
            holder.tv = (TextView) convertView.findViewById(R.id.list_item_poojaname);
            holder.checks = (CheckBox) convertView.findViewById(R.id.list_item_poojacheck);
            convertView.setTag(holder);
        }else {
            holder = (ViewHolder) convertView.getTag();
        }
        holder.checks.setOnCheckedChangeListener(null);
        holder.checks.setFocusable(false);

        if (listData.get(position).isselected) {
            holder.checks.setChecked(true);
        } else {
            holder.checks.setChecked(false);
        }

        holder.checks.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton cb, boolean b) {

                if (checkMaxLimit()) {

                    if (listData.get(position).isselected && b) {
                        holder.checks.setChecked(false);
                        listData.get(position).isselected = false;

                    } else {
                        holder.checks.setChecked(false);
                        listData.get(position).isselected = false;
                        Toast.makeText(context, "Max limit reached", Toast.LENGTH_SHORT).show();
                    }
                } else {
                    if (b) {
                        listData.get(position).isselected = true;
                    } else {
                        listData.get(position).isselected = false;
                    }
                }
            }
        });

        holder.tv.setText(listData.get(position).getPOOJA_LISTING_NAME());
        return convertView;
    }

    public boolean checkMaxLimit() {
        int countermax = 0;
        for(ModelPooja item : listData){
            if(item.isselected){
                countermax++;
            }
        }
        return countermax >= 5;
    }

    public class ViewHolder {
        TextView tv;
        public CheckBox checks;
    }
}
公共类CustomAdapter扩展了BaseAdapter{
私人充气机;
私人最终语境;
私有列表数据;
公共CustomAdapter(上下文mainActivity,列表listData){
上下文=主要活动;
this.listData=listData;
充气器=(LayoutFlater)context.getSystemService(context.LAYOUT\u充气器\u服务);
}
@凌驾
public int getCount(){
返回listData.size();
}
@凌驾
公共对象getItem(int位置){
返回listData.get(位置);
}
@凌驾
公共长getItemId(int位置){
返回0;
}
@凌驾
公共视图getView(最终整数位置、视图转换视图、视图组父视图){
最终持票人;
if(convertView==null){
holder=新的ViewHolder();
convertView=充气机。充气(R.layout.list\u item\u poojaselection,null);
holder.tv=(TextView)convertView.findViewById(R.id.list\u item\u poojaname);
holder.checks=(复选框)convertView.findViewById(R.id.list\u item\u poojacheck);
convertView.setTag(支架);
}否则{
holder=(ViewHolder)convertView.getTag();
}
holder.checks.setOnCheckedChangeListener(null);
保持架。检查。设置聚焦(假);
if(listData.get(position.isselected){
holder.checks.setChecked(true);
}否则{
holder.checks.setChecked(假);
}
setOnCheckedChangeListener(新的CompoundButton.OnCheckedChangeListener(){
@凌驾
检查更改后的公共无效(复合按钮cb,布尔值b){
if(checkMaxLimit()){
if(listData.get(position.isselected&&b){
holder.checks.setChecked(假);
listData.get(position).isselected=false;
}否则{
holder.checks.setChecked(假);
listData.get(position).isselected=false;
Toast.makeText(上下文,“达到最大限制”,Toast.LENGTH_SHORT).show();
}
}否则{
如果(b){
listData.get(position).isselected=true;
}否则{
listData.get(position).isselected=false;
}
}
}
});
holder.tv.setText(listData.get(position.getPOOJA_LISTING_NAME());
返回视图;
}
公共布尔值checkMaxLimit(){
int countermax=0;
对于(ModelPooja项目:listData){
如果(项目.已选定){
countermax++;
}
}
返回计数器最大值>=5;
}
公共类视图持有者{
文本视图电视;
公共复选框检查;
}
}
对于Recyclerview,请尝试这种方式


请在此处发布适配器代码。您是否一次显示六个项目?这是回收视图的问题。您需要维护这些项目的数组。请尝试使用回收视图而不是列表视图。您是否尝试使用我的答案?