gpt4 book ai didi

android - Kotlin/Android - 获取 onBindViewHolder Item 中生成的按钮的 ID

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

我有一个 recyclerView有多个项目(ViewHolders)。在其中一个 (ViewHolderItemTratamentos) 中,我得到了以下元素:

enter image description here

当第一个“添加button”被点击时,通过一个inflator布局,相同的元素( editTextbutton )创建在之前的元素之下。就像这样:

enter image description here来 self 的代码 adapter (它得到了设置点击的逻辑)创建新行:

holder.add_field_button.setOnClickListener {
holder.parent_linear_layout.apply {
val inflater = LayoutInflater.from(context)
val rowView = inflater.inflate(R.layout.used_products_field, this, false)
holder.parent_linear_layout.addView(rowView, holder.parent_linear_layout.childCount!! - 0)
holder.add_field_button.text = "-"
}
}

所以,问题是我无法获得 id来自 buttonlayout.used_products_field生成另一条新线。我应该膨胀这个布局吗(它确实有意义吗?)?我应该给同样的id吗?每button (静态的和生成的)?

R.layout.used_products_field 的内容:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@+id/number_edit_text"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="5"
android:inputType="phone"/>

<Button
android:id="@+id/add_field_button"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
style="@style/botaoCard"
android:textSize="24dp"
android:text="+"
android:padding="5dp"/>

最佳答案

您可以在展开的布局中获取 View (used_products_field)

val inflater = LayoutInflater.from(context)
val rowView = inflater.inflate(R.layout.used_products_field, this, false)
val button = rowView.findViewById<Button>(R.id.add_field_button)
val edittext = rowView.findViewById<EditText>(R.id.number_edit_text)

关于android - Kotlin/Android - 获取 onBindViewHolder Item 中生成的按钮的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53989496/

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