如何获得带有网格布局的回收站视图,其中每个单元格都具有相同的单元格宽度和单元格高度,具体取决于屏幕宽度。
我这样设置布局
linearLayoutManager = LinearLayoutManager(this)
categoriesRecyclerView.layoutManager = GridLayoutManager(this,4)
我总是连续四个单元格。
结果看起来像这样。
我明白为什么得到这个结果。我将单元格内的内容始终设置为wrap_content
。因此,当图像较大或文本较长时,高度将发生变化。
我的布局是这样定义的:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintDimensionRatio="1:1"
android:layout_margin="8dp"
android:background="@drawable/rounded_image_view">
rounded_image_view
只是一个形状。
我认为我可以借助比率来调整约束布局。
我尝试过的一些其他事情:使用卡片,使用线性布局,将内容放入View
内,与constraintHeight_percent
一起使用,我在类似的线程中读了很多东西。但是我没有解决办法。
完整的xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintDimensionRatio="1:1"
android:layout_margin="8dp"
app:layout_constraintHeight_percent="0.5"
android:background="@drawable/rounded_image_view">
<ImageView
android:id="@+id/categoryImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@id/itemTitle"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/anatomie" />
<TextView
android:id="@+id/itemTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Anatomie"
android:textColor="@color/colorAccent"
android:textSize="12sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/categoryImage" />
<ImageView
android:id="@+id/isPremiumImage"
android:layout_width="20dp"
android:layout_height="20dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/locked" />
</androidx.constraintlayout.widget.ConstraintLayout>
答案 0 :(得分:1)
您可以动态计算设备屏幕的宽度,并相应地设置项目视图的高度。
将以下用于计算大小的util方法添加到适配器类。
/**
* calculates the size of the item based on the screen size
*/
fun calculateSizeOfView(context: Context): Int {
val displayMetrics = context.resources.displayMetrics
val dpWidth = displayMetrics.widthPixels
return (dpWidth / COLUMN_COUNT) // COLUMN_COUNT would be 4 in your case
}
现在将以下代码行添加到适配器类的onCreateViewHolder方法中。
1)从util方法获取每个项目的大小
2)创建布局参数-高度和宽度均高于计算值
3)将参数设置为OnCreateViewHolder内部的展开视图
val view = *your_inflated_view* // the return view of your .inflate method
val size = calculateSizeOfView(*your_context*)
val margin = 8 * 4 // any vertical spacing margin = your_margin * column_count
val layoutParams = GridLayout.LayoutParams(ViewGroup.LayoutParams(size - margin, size)) // width and height
layoutParams.bottomMargin = 8 // horizontal spacing if needed
view.layoutParams = layoutParams
return *your_view_holder_with_view* // usual return