你好朋友我想通过我以编程方式设置的标签名称获得多个视图,我希望在单击另一个视图时看到一个视图 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);
}
在这段代码中,我为 imagebutton 或线性布局设置了相同的标签名称,我想在线性布局单击时获取 imagebutton。
请告诉我如何做到这一点。
提前致谢