欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

RecyclerView 显示不全的问题.

程序员文章站 2022-07-01 20:29:09
...

在实际项目中,发现RecyclerView控件,在显示时,下拉中,没有显示全,比如64卦,只显示了48卦,解决办法是在布局文件中,在RecyclerView的外面,再包裹一层线性布局,即可。完成时代码如下:

 

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants"> //让其直接获取焦点,可以不加。带验证。
    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_all_list"
        android:layout_width="395dp"
        android:layout_height="715dp"
        android:scrollbars="vertical"
        tools:layout_editor_absoluteX="8dp"
        tools:layout_editor_absoluteY="8dp"
        tools:listitem="@layout/recycler_view_item" />
</RelativeLayout>