我有 2 个不同的 java 类,一个用于文本视图,另一个用于检查文本,我想在它们上应用这些属性,是否允许以下代码块用于相同的 id?它向我显示了一个关于不正确结构的错误。如何将这两个属性应用于同一代码块(例如: com.abc1 和 com.abc2 )。
<com.abc.views.CheckedTextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/selectable_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checkMark="@drawable/toggle_selector"
android:padding= "10dp"/>
<com.abc.utils.FontTextView
android:id="@+id/selectable_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textColor="#707070"
foo:customFont="Roboto-Regular.ttf"
android:textSize="12sp"/>