朋友您好我希望通过其编程方式设置的标签名称获取多个视图,我想在单击另一个视图时看到一个视图onclick方法很常见
我的代码是
public void onClick(final View v) {
// TODO Auto-generated method stub
System.gc();
String tag = v.getTag().toString();
Log.i("The Tag is here", "control is here" + v.getTag());
LinearLayout ll = (LinearLayout) v.findViewWithTag(v.getTag());
Animation animation = new TranslateAnimation(0, 90, 0, 0);
animation.setDuration(500);
animation.setFillAfter(true);
ll.startAnimation(animation);
View v1 = (ImageButton) v;
ImageButton iv = (ImageButton) v1.findViewWithTag("0delete");
iv.setVisibility(View.VISIBLE);
// Log.i("this is the", "======="+iv);
}
在这段代码中,我为图像按钮或线性布局设置了相同的标签名称,我想在线性布局点击上获得图像按钮。
请告诉我如何实现这一目标。
提前致谢