如何将 GridLayoutManager 中的项目固定为具有不同跨度计数的父项的开始和结束
Posted
技术标签:
【中文标题】如何将 GridLayoutManager 中的项目固定为具有不同跨度计数的父项的开始和结束【英文标题】:how to set items in GridLayoutManager fixed to start and end of parent with different span count 【发布时间】:2021-12-01 05:04:30 【问题描述】:这是我的 RecyclerView :
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/add_transaction_pair_rec"
android:layout_
android:layout_
android:layout_marginStart="23dp"
android:overScrollMode="never"
android:scrollbars="none"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/row_symbol_market_view_line"
app:layout_constraintTop_toTopOf="parent"
tools:itemCount="1"
tools:listitem="@layout/row_add_transaction_rec_pair" />
这是我的行布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_>
<TextView
android:id="@+id/row_rec_pair_name_txt"
android:layout_
android:layout_
android:fontFamily="@font/sans_regular"
android:paddingTop="@dimen/row_timeframe_mrg_tb"
android:paddingBottom="@dimen/row_timeframe_mrg_tb"
android:textAllCaps="true"
android:textColor="@color/auth_blue_gray54"
android:textSize="@dimen/symbol_ts" />
</LinearLayout>
我在行布局中从 TextView 中删除了填充或边距,但它不起作用
【问题讨论】:
【参考方案1】:我认为让你的行匹配父级和你的文本视图重心可以解决你的问题。
【讨论】:
你的意思是TextView的宽度应该是match_parent还是TextView的父视图应该是match_parent? 你的洞视图 linearLayout 和你的 TextView 的 android:layout_width 应该是 matchParent。以上是关于如何将 GridLayoutManager 中的项目固定为具有不同跨度计数的父项的开始和结束的主要内容,如果未能解决你的问题,请参考以下文章
如何将gridlayoutManager每列的宽度设置为wrapContent在android中不固定大小
如何将 Gridlayoutmanager 用于 recyclerView 内的可扩展卡片