I have an ImageView for which I wanted to implement the onClickListener. But when I click on the image, nothing happens. Event the Logcat does not show any errors.
F
Please Try this one.
ImageView imageview1 = findViewById(R.id.imageView1); imageview1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Toast.makeText(YourActivity.this, "Here is your Text",Toast.LENGTH_SHORT).show(); } });