How to get a context in a recycler view adapter

后端 未结 12 1404
一向
一向 2020-12-02 06:12

I\'m trying to use picasso library to be able to load url to imageView, but I\'m not able to get the context to use the picasso library correctly.



        
12条回答
  •  时光取名叫无心
    2020-12-02 06:52

    You can use like this view.getContext()

    Example

    holder.tv_room_name.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
    
                Toast.makeText(v.getContext(), "", Toast.LENGTH_SHORT).show();
    
    
            }
        });
    

提交回复
热议问题