Card View Click on Card Move To New Activity

后端 未结 6 1728
死守一世寂寞
死守一世寂寞 2021-02-07 03:39

I am new to Android programming and was working on a card layout. I was wondering, how do I make it clickable?

android:clickable=\"true\"
android:foreground=\"?         


        
6条回答
  •  死守一世寂寞
    2021-02-07 04:41

    You can use viewHolder class as follow

    public ViewHolder(View itemLayoutView) {
            super(itemLayoutView);
    
           itemLayoutView.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v)
                {
                 //  perfoem your action here
                }
            });
        }
    

提交回复
热议问题