我有一个自ConstraintLayout
继承的自定义视图
我想为该版式设置一个ID:
它夸大了这个xml:
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<TextView
android:id="@+id/account_display_name"
style="@style/AccountDataDisplayName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="?attr/text_marginStart"
android:layout_marginEnd="?attr/text_marginEnd"
android:layout_marginLeft="?attr/text_marginLeft"
因为最顶部的节点只有<merge>
,
如何为我的customView设置ID?
我知道我可以使用它:
ViewCompat.generateViewId();
但是我想将其设置为一个名为
的标识符R.id.has_selected_account = ViewCompat.generateViewId();
this.setId(R.id.has_selected_account);