0

我根据每次变化的特定数组大小动态添加布局,如下所示:

    for(int i = 0; i < topps.size(); i++)
    {
        lr1 = new LinearLayout(Main.this);
        lr1.setOrientation(LinearLayout.VERTICAL);
        scrool.addView(lr1);

        final View child = getLayoutInflater().inflate(R.layout.tops_data, null);
        red   = (TextView)child.findViewById(R.id.topp_detail_red_txt);
        black = (TextView)child.findViewById(R.id.topp_detail_black_txt);

        use = (ImageButton)child.findViewById(R.id.imageButton2);
        use.setOnClickListener(new View.OnClickListener() 
        {   
        @Override
        public void onClick(View v) 
        {
               if(bgh == false)
           {
Toast.makeText(this, "btn1 is "+child.getId(), Toast.LENGTH_SHORT).show();
            use.setBackgroundResource(R.drawable.tick_unsel);
           }
           else if(bgh == true)
           {
Toast.makeText(this, "btn1 is "+child.getId(), Toast.LENGTH_SHORT).show();
                    use.setBackgroundResource(R.drawable.tick_select);
               }
        }
         });
         lr1.addView(child);
         child.setId(main_cnt);
         use.setId(main_cnt);

在上面的代码中,一切正常,视图数量根据数组大小列出,我正在获取每个视图的按钮 ID。

按钮图像未根据条件更改,但 toast 打印正确。例如 :

如果我有 5 个视图,当我单击第 3 个视图的按钮时,toast 正确显示为 setId,但图像仅在第 5 个视图中更改。

如何在每个视图中正确更改图像?

4

2 回答 2

1

应该试试 ............

v.setImageResource(R.drawable.tick_select);

或者

v.setBackgroundResource(R.drawable.tick_select);

代替

use.setBackgroundResource(R.drawable.tick_select);
于 2012-06-21T10:15:50.490 回答
0

您需要在每次迭代时创建 ImageButton 的新实例。

替换:使用 = (ImageButton)child.findViewById(R.id.imageButton2);

By : ImageButton 使用 = (ImageButton)child.findViewById(R.id.imageButton2);

于 2012-06-21T10:28:47.737 回答