如何将 GridLayoutManager 中的项目设置为固定到具有不同跨度计数的父级的开始和结束
how to set items in GridLayoutManager fixed to start and end of parent with different span count
这是我的 RecyclerView :
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/add_transaction_pair_rec"
android:layout_width="0dp"
android:layout_height="wrap_content"
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_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/row_rec_pair_name_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
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 中删除了 padding 或 marging,但它不起作用
我认为让你的行与父级匹配并且你的文本视图重力居中可以解决你的问题。
这是我的 RecyclerView :
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/add_transaction_pair_rec"
android:layout_width="0dp"
android:layout_height="wrap_content"
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_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/row_rec_pair_name_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
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 中删除了 padding 或 marging,但它不起作用
我认为让你的行与父级匹配并且你的文本视图重力居中可以解决你的问题。