如何在RecyclerView中根据文本长度设置列数

时间:2018-10-30 03:39:33

标签: android android-recyclerview gridlayoutmanager

enter image description here我正在使用recyclerview和GridLayoutManager在textView中显示文本。我想显示这些项目,如图1所示。 应用程序的要求是在此处输入图像描述如果textview需要2行以将设置的列数显示为1否则将其设置为2。 我已经尝试从下面的链接使用GridAutoFitLayoutManager.java,但是没有用。 https://gist.github.com/omidraha/af3aa017d4ec06342bdc03c49d4b83b1

截至目前,我已将列数设置为2。下面是我的代码   hotAdapter =新的HotAdapter(this,hotItems,this);         hotRecyclerView.setAdapter(hotAdapter);

    GridLayoutManager gridLayoutManager=new GridLayoutManager(this,2);

    hotRecyclerView.setLayoutManager(gridLayoutManager);

1 个答案:

答案 0 :(得分:2)

您可以尝试flexbox layout。将flexbox布局添加到您的项目后,您可以 将其设置为direction = row and wrap = wrap。

<com.google.android.flexbox.FlexboxLayout
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="match_parent"
app:flexDirection="row"
app:flexWrap="wrap" >
    <TextView />
    <TextView />
    ...
</com.google.android.flexbox.FlexboxLayout>