I have a RecyclerViewClickListener.RecyclerTouchListener and on that @onClick override method, I sat Intent to go another activity. But the problem is on that RecyclerViewClickListener.RecyclerTouchListener there is one image view also and I implemented onClickListener of that InmageView so that it will open one dialog box.
Now, when I click on that ImageView, 2 things happened at same time. 1.Opened Dialog box 2.It is going to another activity also, because of Intent.
How can I fix?