实现RecyclerView的item点击事件的内部监听器

代码如下:

public class myViewholder extends RecyclerView.ViewHolder implements View.OnClickListener{
    private TextView tv_bookname;
    private TextView tv_bookauthor;
    private TextView tv_bookintroduce;
    private ImageView img_book;

    public myViewholder(View itemView) {
        super(itemView);
        tv_bookname= (TextView) itemView.findViewById(R.id.item_bookname);
        tv_bookauthor= (TextView) itemView.findViewById(R.id.item_bookauthor);
        tv_bookintroduce= (TextView) itemView.findViewById(R.id.item_bookintroduce);
        img_book= (ImageView) itemView.findViewById(R.id.item_bookimage);
        itemView.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        Log.d(TAG,"onClick--position:"+getAdapterPosition());
        //得到索书号
        //跳转窗体,携带索书号
        Intent intent=new Intent(context,DetailsActivity.class);
       intent.putExtra("book_callnum",(String)list.get(getAdapterPosition()).get("book_callnumber"));
       context.startActivity(intent);

    }
}


首先myViewholder实现了View的点击事件的接口,然后又有设置了监听器(黄色高亮代码行),之后关键的地方就是确定点击的是哪一项,很巧在ViewHolder这个类中有getAdapterPosition()这个方法,所以对于确定是哪一项被点击了起到关键性的作用,根据点击不同项做不同的事情,就是这么简单。



你可能感兴趣的:(android,中级)