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
requestRectangleOnScreen
not work for me, in my case, requestRectangleOnScreen
not 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;
}
}