Cannot scroll RecyclerView inside a Fragment?
问题 I am having troubles integrating a RecyclerView (using cardviews for the rows) inside a fragment. For some reason I cannot scroll the card view? Please, any suggestions? This is my app design: This is my fragment code: public class PageFragment2 extends Fragment { public static final String ARG_PAGE2 = "ARG_PAGE"; private int mPage2; public static PageFragment2 newInstance(int page) { Bundle args = new Bundle(); args.putInt(ARG_PAGE2, page); PageFragment2 fragment = new PageFragment2();