需要为我的 onClick 保存变量
for ( int i = 0; i < responses.size(); i++ )
{
Button btn = new Button( this );
btn.setText( guideStep.getResponse( i ).getTitle() );
btn.setOnClickListener(new OnClickListener() {
public void onClick( View v )
{
try
{
//NextStep(guideStep.getStep(), guideStep.getSession(), guideStep.getResponse( i ).getId() );
}
catch( Exception e )
{
e.printStackTrace();
}
}
});
linearLayout.addView( btn );
}
看下面的代码。我正在将按钮动态添加到我的线性布局中。我还需要动态地更改每个按钮的 onClick 事件。为此,我需要循环中的计数器以及某种方法来保存我的guideStep对象,也无需循环。
有什么办法可以做到这一点吗?
for ( int i = 0; i < responses.size(); i++ )
{
Button btn = new Button( this );
btn.setText( guideStep.getResponse( i ).getTitle() );
btn.setOnClickListener(new OnClickListener() {
public void onClick( View v )
{
try
{
//NextStep(guideStep.getStep(), guideStep.getSession(), guideStep.getResponse( i ).getId() );
}
catch( Exception e )
{
e.printStackTrace();
}
}
});
linearLayout.addView( btn );
}
Looking at the following code. I am adding buttons dynamically to my linear layout. I need to, dynamically aswell, change the onClick event for each button. For that, I need the counter from the loop and some way to save my guideStep object, from without the loop aswell.
Is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在按钮上使用
setTag(your_id)
方法,然后使用OnClick
中的getTag()
方法获取 id。You can use the
setTag(your_id)
method on your button and then get the id back withgetTag()
method in yourOnClick
.