テキスト ビュー用とチェック済みテキスト用の 2 つの異なる Java クラスがあります。これらのプロパティをそれらに適用したいのですが、次のコード ブロックは同じ ID に使用できますか? 不適切な構造に関するエラーが表示されます。これら 2 つのプロパティを同じコード ブロックに適用するにはどうすればよいですか (例: 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"/>