setTag(key)
Android レイアウト ファイルで次のように同等のものを使用できます。
<EditText android:id="@+id/passwordEdit"
android:tag="key"
android:inputType="textPassword"/>
setTag(key, value)
私のxmlで同等のものを使用したいと思います。
出来ますか?
私はパーティーに少し遅れています...とにかく、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>