我正在开发一个Android项目,其中我创建了3个线性布局(水平),每个布局都有一些图像视图。我还为每个图像视图分配了标签。 如何通过标签访问每个图像视图。 我想访问它来检查图像视图的不同条件。
答案 0 :(得分:1)
标签不用于识别视图,因此您无法直接使用它来识别视图(https://developer.android.com/reference/android/view/View.html)
你需要先得到父母。
LinearLayout linearLayout = (LinearLayout)findViewById(R.id.ll_layout_1);
ImageView imageView = (ImageView) linearLayout.findViewWithTag("imageTag");