0

I have image view in my activity and when I click over Image view it is not showing anything in Log cat neither in toast message.

This is my code below:

activity_main.xml

<ImageView
     android:layout_width="30dp"
     android:layout_height="30dp"
     android:src="@drawable/heart"
     android:id="@+id/heartButton"
     android:clickable="true"
     android:focusable="true"/>

MainActivity.java

ImageView heartButton = (ImageView)findViewById(R.id.heartButton);

heartButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

           Log.d("Click","Hello");

        }
    });

Someone please let me know why this imageview click listener is not working. Any help would be appreciated.

THANKS

Digvijay
  • 2,887
  • 3
  • 36
  • 86

0 Answers0