gpt4 book ai didi

android - 如何从我的 fragment 上的 recyclerView 中的 View 以编程方式更改 View 的属性?

转载 作者:行者123 更新时间:2023-11-30 05:05:38 25 4
gpt4 key购买 nike

我在我的项目文件的 xml 中设置了 View (卡片 View )的边距,这个 xml 项目文件将用于我的 recyclerView 适配器。

正如您在下面的 xml 中看到的,我已经为顶部、底部、开始和结束留出了边距。我想更改 fragment 的边距

这是我的 xml 文件,item_category_list.xml:

<?xml version="1.0" encoding="utf-8"?>

<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="8dp"
app:cardElevation="4dp"
android:id="@+id/cardView_item_category_list" android:layout_marginStart="8dp" android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp" android:layout_marginTop="8dp">

<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/background_light">

<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
app:srcCompat="@drawable/logo_apps"
android:id="@+id/categoryImageView_Item"
android:layout_marginTop="16dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="24dp"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="24dp"
app:layout_constraintDimensionRatio="w,1:1" android:scaleType="centerCrop"/>

<TextView
android:text="@string/Category"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/categoryName_textView_item"
app:layout_constraintTop_toBottomOf="@+id/categoryImageView_Item"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginStart="4dp"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="4dp"
android:textAlignment="center"
android:minLines="1"
android:maxLines="2"
app:autoSizeTextType="uniform"
app:autoSizeMinTextSize="10sp"
app:autoSizeMaxTextSize="15sp"
app:autoSizeStepGranularity="1sp"
android:layout_marginBottom="24dp"
android:layout_marginTop="24dp"/>


</androidx.constraintlayout.widget.ConstraintLayout>


</androidx.cardview.widget.CardView>

这是适配器

class CategoryAdapter(val context: Context, val categories: List<Category>) : RecyclerView.Adapter<CategoryAdapter.ViewHolderCategory>() {

private lateinit var mListener : CategoryAdapterListener

interface CategoryAdapterListener {
fun onItemClick(position: Int)
}

override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolderCategory {

val layoutInflater = LayoutInflater.from(parent.context)
val itemView = layoutInflater.inflate(R.layout.item_category_list,parent, false)
return ViewHolderCategory(itemView,mListener)
}

override fun getItemCount(): Int {
return categories.size
}

override fun onBindViewHolder(holder: ViewHolderCategory, position: Int) {

val category = categories[position]

holder.categoryNameTextView.text = category.name
Glide
.with(context)
.load(category.getFormattedImageURL())
.into(holder.categoryImageView)

}

inner class ViewHolderCategory(itemView: View, listener: CategoryAdapterListener) : RecyclerView.ViewHolder(itemView) {

val categoryImageView = itemView.findViewById<ImageView>(R.id.categoryImageView_Item)
val categoryNameTextView = itemView.findViewById<TextView>(R.id.categoryName_textView_item)
val cardView = itemView.findViewById<CardView>(R.id.cardView_item_category_list)

init {

itemView.setOnClickListener {
val position = adapterPosition
if (position != RecyclerView.NO_POSITION) {
listener.onItemClick(position)
}
}

}

}

fun setCategoryAdapterListener(listener: CategoryAdapterListener) {
mListener = listener

}
}

在 fragment 中,我将适配器设置为回收站 View :

val categoryAdapter = CategoryAdapter(mContext,parentCategory)
val layoutManager = GridLayoutManager(mContext,4,RecyclerView.VERTICAL,false)

recyclerViewParentCategory.adapter = categoryAdapter
recyclerViewParentCategory.layoutManager = layoutManager
recyclerViewParentCategory.setHasFixedSize(true)

我想在我的 item_category_list.xml 中在我的 java/kotlin 文件(在我的 fragment 文件中) 中以编程方式更改卡片 View 中的边距,这样我就可以从我的 fragment 中更改边距。

那么我该如何实现呢?首选 Java/Kotlin 任何语言。

最佳答案

首先,它的路很长。所以我只是建议一种方法。

  1. 首先。在您的 Fragment 中,当发生某些操作时,您需要更改 cardview 适配器列表项 xml 中的大小。

    所以。为此,您需要一个接口(interface)(比方说 interface ChangeMargin)。创造Fragment 中的接口(interface)并像这样在您的适配器中实现该接口(interface)

class CategoryAdapter(val context: Context, val categories: List<Category>):RecyclerView.Adapter<CategoryAdapter.ViewHolderCategory>(),ChangeMargin()

如何创建接口(interface)可以通过this

  1. 现在在该界面中,您需要获取 cardview 并分配新的 margin 。

 @Override
public void ChangeMargin() {
val linear_params=LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT)
linear_params.setMargins(leftMargin,topmargin,rightMargin,bottomMargin)
cardView?.layoutParams=linear_params
}

不要忘记通知适配器

关于android - 如何从我的 fragment 上的 recyclerView 中的 View 以编程方式更改 View 的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54643078/

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