gpt4 book ai didi

android - GridLayoutManager - 列宽包裹自己最大的 child

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:43:34 27 4
gpt4 key购买 nike

我在 Horizo​​ntalScrollView 中有一个 RecyclerView,我希望它使用 GridLayoutManager。这没关系,但有一件事仍然困扰着我,每列的宽度都是相同的(基于我想的最大单元格宽度?)。是否可以换行宽度以匹配此特定列的最大单元格?

它应该看起来像这样:

enter image description here

其中橙色部分是单元格 View 所采用的部分。


编辑

我们要求我澄清我的期望。举个例子胜于 Eloquent ,在这里你可以看到带有 GridLayoutManager 的 RecyclerView 的截图。每个项目都是一个简单的 TextView,其中随机包含 10 到 40 个字符的文本。如前所述,RecyclerView 在 Horizo​​ntalScrollView 中。我们可以看到每一列都具有相同的宽度,尽管该列中的任何项目都不可能填满整个宽度。我想要的是删除那些无用的空白空间并具有不同大小的列,每列与其最大的子列的宽度相匹配。

enter image description here

如果你想测试这个行为,你可以克隆我在 Github 上上传的这个 repo:https://github.com/ShargotthDev/TestGrid

根据要求,这是我的 XML 布局(非常基本):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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">

<HorizontalScrollView
android:id="@+id/gameplay_hotizontalScroll_ScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="70dp">

<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/recycler_view" />

</HorizontalScrollView>

</RelativeLayout>

编辑 2

我应该提到一些单元格的跨度大小可能 > 1,并且 LayoutManager 应该是垂直的,以便这些单元格在水平方向而不是垂直方向占据更多位置(不知道我是否让自己可以理解)。

感谢您的宝贵时间!

最佳答案

您不需要将 RecyclerView 放在 Horizo​​ntalScrollView 中。请参阅下面的代码。

public class MainActivity extends AppCompatActivity {

String[] list = new String[]{"Some text goes here", "Some small", "text", "goes here", "Some", "very large text", "goes here",
"Some text goes here", "Some small", "text", "goes here", "Some", "very large text", "goes here"};
RecyclerView grid;
GridAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
grid = (RecyclerView)findViewById(R.id.grid);
grid.setLayoutManager(new GridLayoutManager(this, 2, LinearLayoutManager.HORIZONTAL, false));
grid.setHasFixedSize(true);
adapter = new GridAdapter(list);
grid.setAdapter(adapter);
}
}

适配器类

public class GridAdapter extends RecyclerView.Adapter<GridAdapter.ViewHolder>{
String[] mList;
public GridAdapter(String[] list) {
mList = list;
}

@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.row, parent, false);
return new ViewHolder(view);
}

@Override
public void onBindViewHolder(ViewHolder holder, int position) {
holder.bind(mList[position]);
}

@Override
public int getItemCount() {
return mList.length;
}

public class ViewHolder extends RecyclerView.ViewHolder {
TextView textView;
public ViewHolder(View itemView) {
super(itemView);
textView = (TextView)itemView.findViewById(R.id.text);
}

public void bind(String s) {
textView.setText(s);
}
}
}

row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="match_parent"
android:padding="10dp">
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="cab.suresh.gridlayoutexample.MainActivity">

<android.support.v7.widget.RecyclerView
android:id="@+id/grid"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>

编辑像这样将 RecyclerView 放在 NestedScrollView 中

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none">
<android.support.v7.widget.RecyclerView
android:id="@+id/grid"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</android.support.v4.widget.NestedScrollView>

然后像这样设置你的 spanCount 数量

spanCount = 8;

grid.setLayoutManager(new GridLayoutManager(this, spanCount, LinearLayoutManager.HORIZONTAL, false));

关于android - GridLayoutManager - 列宽包裹自己最大的 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41147370/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com