I have an overflow button inside a CardView in Recyclerview. Whenever I am clicking the button,I show a popup menu but also RecyclerView i
requestRectangleOnScreennot work for me, in my case, requestRectangleOnScreennot called, when show popupMenu.
my solution is override requestChildRectangleOnScreen, and reture false, work well.
public class PopupAncorRecyclerViewPager extends RecyclerView {
@Override
public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate) {
return false;
}
}