我正在尝试一个非常简单的应用程序,它使用带有GridLayoutManager的RecyclerView。我想要实现的是保持卡片项的列宽并改变它们之间的边距(我需要保持我的列宽固定)。但是当我在纵向和横向之间切换时,列的宽度会发生变化。
如果我理解正确,我需要测量屏幕的宽度除以每张卡的宽度,并将GridLayoutManager的跨度计数设置为计算值。但我似乎错过了一些东西。
另外,我尝试使用AutoFitRecyclerView(http://blog.sqisland.com/2014/12/recyclerview-autofit-grid.html)并且有很多帖子RecyclerView GridLayoutManager: how to auto-detect span count?,Changing number of columns in RecyclerView gridlayout有助于自动检测跨度计数,但这不是我的意思想要实现。我希望在调整列之间的边距时使用相同的列宽。
任何指针或解决方案都将非常受欢迎。
这是网格项的布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="210dp"
android:layout_height="338dp"
android:layout_margin="12dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/thumbnail"
android:layout_width="match_parent"
android:layout_height="270dp"
android:background="#1F000000"/>
<TextView
android:id="@+id/title_text"
android:layout_width="164dp"
android:layout_height="wrap_content"
android:layout_below="@id/thumbnail"
android:layout_marginBottom="13dp"
android:layout_marginLeft="13dp"
android:layout_marginRight="32dp"
android:layout_marginTop="13dp"
android:ellipsize="end"
android:maxLines="2"
android:textColor="#393c3d"
android:textSize="14sp" />
</RelativeLayout>
</android.support.v7.widget.CardView>
答案 0 :(得分:0)
也许你可以将CardView的onMeasure方法和setMeasuredDimension覆盖到210dp和338dp,这样当Recyclerview计算你的Cardview的宽度和高度时,它将返回绝对的宽度和高度。