我在下面提供的解决方案有助于在屏幕上的 recyclerView 中显示预定义数量的子项目('numOfCardViewItemsOnScreen'),还计算这些项目之间的边距以 均匀间隔,通过考虑项目和 recyclerView 的结束边距之间提供的边距(即,'marginAtRecyclerViewsEnds')
请注意,我已经在 5.0" 到 7.0" 英寸的设备上对此进行了测试,并获得了一致的结果。
private fun configureCardViewLayoutParams(cardView: CardView, numOfCardViewItemsOnScreen: Int, marginAtRecyclerViewsEnds: Float, marginLeftParam: Float, marginRightParam: Float, marginTopParam: Float, marginBottomParam: Float): ViewGroup.MarginLayoutParams {
val numOfGapsInBetweenItems = numOfCardViewItemsOnScreen - 1
var combinedGapWidth = ((marginLeftParam + marginRightParam) * numOfGapsInBetweenItems) + (marginAtRecyclerViewsEnds * 2)
//Provided approx. adjustment of 2dp to prevent the extreme edges of the card from being cut-off
combinedGapWidth += 2
val combinedGapWidthDp = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, combinedGapWidth, cardView.resources.displayMetrics).toInt()
//Since margins/gaps are provided in-between the items, these have to be taken to account & subtracted from the width in-order to obtain even spacing
cardView.layoutParams.width = (getScreenWidth(cardView.context as MainActivity) - combinedGapWidthDp) / numOfCardViewItemsOnScreen
//Margins in-between the items
val marginLeftOfItem = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, marginLeftParam, cardView.resources.displayMetrics).toInt()
val marginRightOfItem = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, marginRightParam, cardView.resources.displayMetrics).toInt()
val marginTopOfItem = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, marginTopParam, cardView.resources.displayMetrics).toInt()
val marginBottomOfItem = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, marginBottomParam, cardView.resources.displayMetrics).toInt()
//Providing the above margins to the CardView
val cardViewMarginParams: ViewGroup.MarginLayoutParams = cardView.layoutParams as ViewGroup.MarginLayoutParams
cardViewMarginParams.setMargins(marginLeftOfItem, marginTopOfItem, marginRightOfItem, marginBottomOfItem)
return cardViewMarginParams
}
顾名思义,下面的方法有助于计算屏幕宽度
private fun getScreenWidth(activity: MainActivity): Int {
var width: Int = 0
val size = Point()
val windowManager = activity.getSystemService(Context.WINDOW_SERVICE) as WindowManager
width = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
val bounds = windowManager.currentWindowMetrics.bounds
bounds.width()
} else {
val display: Display? = windowManager.defaultDisplay
display?.getSize(size)
size.x
}
return width
}
最后在 onCreateViewHolder 中,利用上面描述的 configureCardViewLayoutParams 方法并传入所需的参数
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): MyRecyclerViewHolder {
val view = LayoutInflater.from(parent.context).inflate(R.layout.row_item_layout, parent, false)
view.layoutParams = configureCardViewLayoutParams(view as CardView, 4, 12f, 4f, 4f, 8f, 8f)
return MyRecyclerViewHolder(view)
}
为了快速理解,我还提供了子item的xml布局(row_item_layout.xml)所以从下面的xml可以看出,我们的子item布局的根视图是一个CardView。
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
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:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation="5dp"
android:foregroundGravity="center">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView1"
android:layout_width="30dp"
android:layout_height="28dp"
android:layout_marginTop="22dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:src="@tools:sample/avatars" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="7dp"
android:layout_marginTop="18dp"
android:layout_marginEnd="7dp"
android:layout_marginBottom="16dp"
android:ellipsize="end"
android:gravity="center"
android:maxLines="2"
android:text="@{accountOptionsModel.title}"
android:textSize="14sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView1"
tools:text="@tools:sample/full_names" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>
getCount()内部没有特殊逻辑,只返回整个列表大小
override fun getItemCount(): Int = myList.size
以下截图分别来自5.0"、6.3"、7.02"的设备