如何从recycleradapter获取数据?

ua4mk5z4  于 2021-06-26  发布在  Java
关注(0)|答案(2)|浏览(490)

我有recyclerview和recycleradapter两个 ArrayList<String>ingridientsfinal 以及 ArrayList<String> dependingridients 阵列列表和一个开关 mySwitch .
下面是适配器。

public class recyclerAdapterIngridients extends RecyclerView.Adapter<recyclerAdapterIngridients.myViewHolder>{
    Context context;
    int intege;
    String[] glux;
    public static ArrayList<String> ingridientsfinal;
    public static ArrayList<String> dependingridients;

    public static class myViewHolder extends RecyclerView.ViewHolder{
        @SuppressLint("UseSwitchCompatOrMaterialCode")
        Switch mySwitch;
        TextView ingridtitle, avel;

        public myViewHolder(@NonNull View itemView) {
            super(itemView);
            ingridtitle=itemView.findViewById(R.id.ingridientTemple);
            mySwitch=itemView.findViewById(R.id.switch1);
            avel=itemView.findViewById(R.id.depend);
            mySwitch.setOnClickListener(new View.OnClickListener() {
                @SuppressLint("SetTextI18n")
                @Override
                public void onClick(View view) {
                    if(!mySwitch.isChecked()){
                        mySwitch.setChecked(false);
                        for (int i=0; i<dependingridients.size(); i++){
                            if(getAdapterPosition()==i) {
                                String h = orderPlain.priceView.getText().toString();
                                h=h.replace(h.substring(h.length()-1), "");
                                String L = avel.getText().toString();
                                L=L.replace(L.substring(L.length()-1), "");
                                orderPlain.priceView.setText(Integer.parseInt(h)
                                        -Integer.parseInt(L)+"$");
                            }
                        }
                    }else{
                        mySwitch.setChecked(true);
                        for (int i=0; i<dependingridients.size(); i++){
                            if(getAdapterPosition()==i) {
                                String h = orderPlain.priceView.getText().toString();
                                h=h.replace(h.substring(h.length()-1), "");
                                String L = avel.getText().toString();
                                L=L.replace(L.substring(L.length()-1), "");
                                orderPlain.priceView.setText(Integer.parseInt(h)
                                        +Integer.parseInt(L)+"$");
                            }
                        }
                    }
                }
            });
        }
    }

    public recyclerAdapterIngridients(ArrayList<String> list, Context c, @Nullable String[] list2){
        context=c;
        ingridientsfinal=list;
        if(list2!=null) {
            glux = list2;
            dependingridients = new ArrayList<String>(Arrays.asList(list2));
        }else{
            glux=null;
            dependingridients = new ArrayList<>(0);
        }
    }

    @NonNull
    public myViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        LayoutInflater inflater = LayoutInflater.from(context);
        View view = inflater.inflate(R.layout.temple, parent, false );
        return new myViewHolder(view);
    }

    @SuppressLint("SetTextI18n")
    public void onBindViewHolder(@NonNull myViewHolder holder, int position) {
            if(glux!=null){
                    try {
                        if(position==dependingridients.size())
                            holder.mySwitch.setEnabled(false);
                        String a = ingridientsfinal.get(position-dependingridients.size());
                        holder.ingridtitle.setText(a);
                    }catch (IndexOutOfBoundsException ignored){}
                try {
                    String b =  dependingridients.get(position);
                    holder.ingridtitle.setText(b);
                    holder.mySwitch.setChecked(false);
                    String g = b.replace(b,"1$");
                    holder.avel.setText(g);
                }catch (IndexOutOfBoundsException ignored){}
            }else {
                    if(position==0)
                        holder.mySwitch.setEnabled(false);
                    String a = ingridientsfinal.get(position);
                    holder.ingridtitle.setText(a);
            }
    }

    @Override
    public int getItemCount() {
        if(dependingridients!=null) {
            return dependingridients.size() + ingridientsfinal.size();
        }else {
            return ingridientsfinal.size();
        }
    }
}


我想得到从另一个类切换的开关的位置。有人能建议我怎么做吗?(谢谢)

eoxn13cs

eoxn13cs1#

好吧,我找到解决办法了。我刚创造了新的 public static ArrayList<String> finall = new ArrayList<>(); 然后我得到了位置并将textview的值添加到我的arraylist中。然后我就可以从另一个类得到这个数组列表。

public myViewHolder(@NonNull View itemView) {
        super(itemView);
        ingridtitle=itemView.findViewById(R.id.ingridientTemple);
        mySwitch=itemView.findViewById(R.id.switch1);
        avel=itemView.findViewById(R.id.depend);
        mySwitch.setOnClickListener(new View.OnClickListener() {
            @SuppressLint("SetTextI18n")
            @Override
            public void onClick(View view) {
                if(!mySwitch.isChecked()){
                    mySwitch.setChecked(false);
                    for (int i=0; i<dependingridients.size(); i++){
                        if(getAdapterPosition()==i) {
                            String h = orderPlain.priceView.getText().toString();
                            h=h.replace(h.substring(h.length()-1), "");
                            String L = avel.getText().toString();
                            L=L.replace(L.substring(L.length()-1), "");
                            orderPlain.priceView.setText(Integer.parseInt(h)
                                    -Integer.parseInt(L)+"$");
                            finall.remove(dependingridients.get(i));
                            System.out.println(finall);
                        }
                    }
                }else{
                    mySwitch.setChecked(true);
                    for (int i=0; i<dependingridients.size(); i++){
                        if(getAdapterPosition()==i) {
                            String h = orderPlain.priceView.getText().toString();
                            h=h.replace(h.substring(h.length()-1), "");
                            String L = avel.getText().toString();
                            L=L.replace(L.substring(L.length()-1), "");
                            orderPlain.priceView.setText(Integer.parseInt(h)
                                    +Integer.parseInt(L)+"$");
                            String p = dependingridients.get(i);
                            System.out.println(p);
                            finall.add(p);
                            System.out.println(finall);
                        }
                    }
                }
            }
        });
    }
jxct1oxe

jxct1oxe2#

您应该使用接口 communication 适配器和 Activity/Fragment 在适配器中:

public interface onclickListener{
   void onClick();
}

然后在适配器类中创建一个变量并通过 constructoradapter class 把它用在 Activity/Fragment

相关问题