I have a popupWindow and it looks the onClick of a view in it not called and some other view takes the touch. How can I increase the touch priority of a view?
This is how I implemented the onClick of the view. The view is inside a popupWindow
view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Log.d(TAG, "on click called for view");
}
});