Android Layout: Horizontal Recyclerview inside a Vertical Recyclerview inside a Viewpager with Scroll Behaviors

Tested solution: All you need is to call mInnerRecycler.setNestedScrollingEnabled(false); on your inner RecyclerViews Explanation: RecyclerView has support for nested scrolling introduced in API 21 through implementing the NestedScrollingChild interface. This is a valuable feature when you have a scrolling view inside another one that scrolls in the same direction and you want to scroll the … Read more

Theme Error – how to fix?

This is a bug in 28.0.0 and the only fix(workaround) is adding this to your Build.gradle: configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> def requested = details.requested if (requested.group == “com.android.support”) { if (!requested.name.startsWith(“multidex”)) { details.useVersion “27.1.1” } } } } Which somehow, this bypasses the issue and uses 27 support library for that. Otherwise, … Read more