我正在尝试使用setSpanSizeLookup
的GridLayoutManager
进行这种类型的布局。
有没有人知道如何通过计算项目的宽度自动调整项目并自动调整像图像?
如果有其他方式,请建议我。
这是一些代码:
int maxWidth = 1040; // device width
mLayoutManager.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() {
@Override
public int getSpanSize(int position) {
LayoutInflater vi = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View v = vi.inflate(R.layout.row_favorite, null);
final TextView textView = (TextView) v.findViewById(R.id.tv_name);
int itemWidth = (int) (textView.getPaint().measureText(favoriteList.get(position).getName()));
if ((maxWidth / 2) / 3 > itemWidth) {
return 1;
} else if ((maxWidth / 2) / 3 < itemWidth && maxWidth / 3 > itemWidth) {
return 2;
} else if (maxWidth / 2 > itemWidth && maxWidth / 3 < itemWidth) {
return 3;
}
}
});
我们现在可以选择FlexboxLayout
。
对于布局,
<com .google.android.flexbox.flexboxlayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:flexwrap="wrap">
我们还有recyclerView
的动态处理布局管理器
FlexboxLayoutManager layoutManager = new FlexboxLayoutManager();
请享用..!!
添加flexbox依赖项
编译'com.google.android:flexbox:0.3.1'
并设置FlexboxLayoutManager
FlexboxLayoutManager layoutManager = new FlexboxLayoutManager(context);
layoutManager.setFlexDirection(FlexDirection.ROW);
layoutManager.setJustifyContent(JustifyContent.CENTER);
recyclerview.setLayoutManager(layoutManager);