简体   繁体   中英

How can I make a click for Recycler View and scan with equals? - Java

Due to the fact that the ListView is not optimized enough, I decided that I would switch to the Recycler View. The first problem that hit me was this one.

My RecyclerView adapter:

public class MyRecyclerViewAdapter extends RecyclerView.Adapter<MyRecyclerViewAdapter.ViewHolder> {

    private List<String> mData;
    private LayoutInflater mInflater;
    private ItemClickListener mClickListener;

    // data is passed into the constructor
    MyRecyclerViewAdapter(Context context, List<String> data) {
        this.mInflater = LayoutInflater.from(context);
        this.mData = data;
    }

    // inflates the row layout from xml when needed
    @Override
    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View view = mInflater.inflate(R.layout.adapter_box, parent, false);
        return new ViewHolder(view);
    }

    // binds the data to the TextView in each row
    @Override
    public void onBindViewHolder(ViewHolder holder, int position) {
        String animal = mData.get(position);
        holder.myTextView.setText(animal);
    }

    // total number of rows
    @Override
    public int getItemCount() {
        return mData.size();
    }


    // stores and recycles views as they are scrolled off screen
    public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
        TextView myTextView;

        ViewHolder(View itemView) {
            super(itemView);
            myTextView = itemView.findViewById(R.id.text_adapter);
            itemView.setOnClickListener(this);
        }

        @Override
        public void onClick(View view) {
            if (mClickListener != null) mClickListener.onItemClick(view, getAdapterPosition());
        }
    }

    // convenience method for getting data at click position
    String getItem(int id) {
        return mData.get(id);
    }

    // allows clicks events to be caught
    void setClickListener(ItemClickListener itemClickListener) {
        this.mClickListener = itemClickListener;
    }

    // parent activity will implement this method to respond to click events
    public interface ItemClickListener {
        void onItemClick(View view, int position);
    }

Using ListView I could do like this:

ListView listView = findViewById(R.id.testL);
        listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                if (parent.getItemAtPosition(position).equals("hello")) {
                    TextView details = word_dialog.findViewById(R.id.word_edit_desc);
                    details.setText("hello");
                }
            }
        });

How can I achieve the same result, but only with the Recycle view?:

 @Override
    public void onItemClick(View view, int position) {

    }

I will be very grateful if you can help me!

I want to be able to click on the recycler view items in MainActivity.java, I already did it, now I need to be able to do my own actions on each line sorted using equals


        ArrayList<String> animalNames = new ArrayList<>();
        animalNames.add("Dog");
        animalNames.add("Cow");
        animalNames.add("Camel");
        animalNames.add("Sheep");
        animalNames.add("Goat");

        // set up the RecyclerView
        recyclerView = findViewById(R.id.myList);
        recyclerView.setLayoutManager(new LinearLayoutManager(this));
        adapter = new MyRecyclerViewAdapter(this, animalNames);
        adapter.setClickListener(this);
        recyclerView.setAdapter(adapter);

 if (somecode.equals("Dog")){
            soundPlay(MediaPlayer.create(getBaseContext(), R.raw.star));
        }
        if (somecode.equals("Camel")){
            soundPlay(MediaPlayer.create(getBaseContext(), R.raw.tick));
        }

This is Inbuild Click event of Recyclerview and another way to use Interface

 holder.itemView.setOnClickListener(v ->

        if (animal.equals("Your animal String"){
    //Your code
    }
); 

if want to use interface then this is reference link

You can define an interface in your adapter, like below

public interface ClickListener{
    void onClick();            
}   

Implement in fragment or activity that your adapter at:

ClickListener listener = () ->{
    TextView details = word_dialog.findViewById(R.id.word_edit_desc);
    details.setText("hello");
}

then pass interface to adapter use constructor or setter, and you can use interface in your viewHolder when bind like below:

itemView.setOnClickListener(()->{
   if (your_list.get(getAdapterPosition()).equals("hello")) {
       interface_var_name.onClick()             
   }
});

                  

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM