我想在我的 Android XML 布局文件中指定两个视图之间的关系。这是我想做的事情:
<View
android:id="@+id/pathview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
...
<CheckBox
android:id="@+id/viewPath"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="true"
android:paddingRight="7dp"
android:shadowColor="#000000"
android:shadowDx="0.5"
android:shadowDy="0.5"
android:shadowRadius="0.5"
android:tag="@id/pathview"
android:text="Paths" />
但是,XML 解析器将标记视为字符串而不将其解释为整数(System.out.println((String) [viewPath].getTag());
打印“false”)。有什么方法可以将资源 ID 分配给视图的标签?