Android ScrollView嵌套RecyclerView导致在三星s8曲面屏显示不全问题

当RecyclerView适配显示不全时可以单独给其嵌套一个相对布局!!!(必须是相对布局),这样在曲面屏手机就可以全部显示出来如下图所示

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_home"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/common_20">
</android.support.v7.widget.RecyclerView> </RelativeLayout>
原文地址:https://www.cnblogs.com/zhujiabin/p/9014011.html