宽度和高度为 match_parent 的 Recyclerview 返回固定大小错误
Posted
技术标签:
【中文标题】宽度和高度为 match_parent 的 Recyclerview 返回固定大小错误【英文标题】:Recyclerview with match_parent for width and height returns fixed size error 【发布时间】:2021-03-25 07:27:45 【问题描述】:在生成 APK/Signed Bundle 时,lintVitalRelease 会返回此报告:
<issue
id="InvalidSetHasFixedSize"
severity="Fatal"
message="When using `setHasFixedSize() in an `RecyclerView`, `wrap_content` cannot be used as \
a value for `size` in the scrolling direction."
category="Correctness"
priority="5"
summary="When using `setHasFixedSize() in an `RecyclerView`, `wrap_content` cannot be used as \
a value for `size` in the scrolling direction."
explanation="When a RecyclerView uses `setHasFixedSize(...)` you cannot use `wrap_content` for size in the scrolling direction."
errorLine1=" recyclerView.setHasFixedSize(true);"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/home/Documents/MyProject/app/src/main/java/com/myproject/MainActivity.java"
line="97"
column="9"/>
</issue>
这显然不是真的,因为我的布局文件如下所示:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/parent_layout"
android:layout_
android:layout_>
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/refresh_layout"
android:layout_
android:layout_>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_
android:layout_
android:background="@color/white"
android:clipToPadding="false"
android:overScrollMode="never"
android:paddingTop="8dp"
android:scrollbars="none"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
是 lint 有问题还是我搞砸了?
在我将 kotlin 与我的 java 项目集成后,这成为一个问题!
【问题讨论】:
试试App Bundle,而不是apk,因为apk不需要上传到play store,所以不会出错。 【参考方案1】:您在代码中的错误可能是这样的
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:scrollbars="vertical"
android:layout_
android:layout_/>
在这种情况下,我们将使用 my_recycler_view.setHasFixedSize (true)
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:scrollbars="vertical"
android:layout_
android:layout_/>
在我的 recyclerview.setHasFixedSize (false) 中,如果我们也使用 wrap_content 作为宽度,这适用
【讨论】:
以上是关于宽度和高度为 match_parent 的 Recyclerview 返回固定大小错误的主要内容,如果未能解决你的问题,请参考以下文章