我可以在我的Android布局文件中使用setTag(key)
的等效项:
<EditText android:id="@+id/passwordEdit"
android:tag="key"
android:inputType="textPassword"/>
我想在我的xml中使用setTag(key, value)
的等价物。
有可能吗?
答案 0 :(得分:10)
我有点迟到了...但是如果你使用的是api等级21或者以上,你可以从xml做到这一点。我不确定内存泄漏问题是否仍然存在。
<Button
android:layout_width=match_parent
android:layout_height=wrap_content
android:text="New button" >
<tag android:id="SomeId" android:value="SomeValue" />
</Button>
答案 1 :(得分:3)
答案 2 :(得分:0)
有:
<tag android:id="..." android:value="..."/>