gpt4 book ai didi

java - 如何在自动创建的多个按钮上管理 OnClickListener

转载 作者:行者123 更新时间:2023-11-29 07:40:47 25 4
gpt4 key购买 nike

我有很多以编程方式创建的按钮,每个按钮对应一个特定的操作,我需要能够根据单击哪个按钮来识别和检索用户输入。界面如下:

enter image description here

我有大约 70 件这样的元素。

我读过

Dynamically creating Buttons and setting onClickListener

Implementing OnClickListener for dynamically created buttons in Android

但我不知道什么是正确的做法。例如,如果用户单击 Button Text is now set...,我必须能够检索 EditText,并知道此分钟数对应于 Andar carrito compra

Button 分配一个 tag 是正确的,以便在屏幕上识别索引,然后在 View 层次结构中向上移动并检索 EditText 值?

到目前为止,这是我的代码:

for (int i = 1; i < types.length; i++) {

// ... more views created
// ......

Button enterBt2 = new Button(this);
// Set layout params and stuff for the button
enterBt2.setTag(i);
enterBt2.setOnClickListener(getOnClickDoSomething(enterBt2));
// ....
}

OnClickListener:

View.OnClickListener getOnClickDoSomething(final Button button)  {
return new View.OnClickListener() {
public void onClick(View v) {
Log.e(TAG, "O " + ExerciseRecord.TYPE.values()[((int) button.getTag())]);
// Obtain the value of the EditText with
LinearLayout ll = (LinearLayout) button.getParent();
ll.getChildAt(0); //The EditText
}
};
}

这是最好的方法吗?

最佳答案

Would be correct to assign a tag to the Button, in order to identify the index on the screen, and then go up in the View hierarchy and retrieve the EditText Value?

这是一个选项。或者您可以有一个实现该接口(interface)的类,添加一个以字符串作为参数的构造函数。例如。

public class MyOnClickListener implements View.OnClickListener {
final String mValue;
public MyOnClickListener(String value) {
mValue = value;
}

public void onClick(View v) {
Log.e(TAG, "O " + mValue);
// Obtain the value of the EditText with button.getParent()....
}
}

关于java - 如何在自动创建的多个按钮上管理 OnClickListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30455962/

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