我正在尝试使用RecyclerView和GridLayoutManager来显示项目列表。
以下是我想要满足的标准:
spanCount
我发现如果我在项目视图上设置android:layout_width="match_parent"
,那么将通过将RecyclerView的宽度除以spanCount
来设置项目宽度。
问题是我不知道项目高度与布局管理器确定的宽度成正比。
我唯一的解决方案是放弃布局管理器进行测量,并在onBindViewHolder
中明确设置项目维度:
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext())
.inflate(R.layout.item_layout, parent, false);
ViewGroup.LayoutParams p = v.getLayoutParams();
p.width = parent.getWidth() / mLayoutManager.getSpanCount();
p.height = p.width * 3/2;
v.setLayoutParams(p);
return new MyViewHolder(v);
}
我将非常感谢能帮助我改进解决方案的任何指示。
答案 0 :(得分:5)
如何在ConstraintLayout
xml中使用item_layout
。
约束布局允许您将高度设置为宽度的比率。
例如:
<android.support.constraint.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">
<FrameLayout
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="3:2"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</android.support.constraint.ConstraintLayout>
所以当你使用app:layout_constraintDimensionRatio="3:2"
时
您正在为2个高度设置3宽度的比率。
无论跨度计数
,这都应该有效