Dynamic Buttons and OnClickListener
问题 Say I have buttons that are created dynamically: for(int j = 0; j < spirits.length; j++){ Button imgBtn = new Button(v.getContext()); imgBtn.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); imgBtn.setMinimumWidth(100); imgBtn.setMinimumHeight(100); imgBtn.setId(j+1); imgBtn.setTag(spirits[j]); imgBtn.setText(spirits[j]); imgBtn.setOnClickListener(new SpiritsClickListener()); cabinet_layout.addView(imgBtn); } I want to change the text of the button every