テキスト ビューのリストを生成する XML ページがあります。私はそれらを個別に持たなければなりません、そうでなければうまくいきません。どうぞ:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/name_of_var_code"
android:typeface="monospace"
android:textSize="16sp"
android:textIsSelectable="true"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/equals"
android:typeface="monospace"
android:textSize="16sp"
android:textIsSelectable="true"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/val_of_var_code"
android:typeface="monospace"
android:textSize="16sp"
android:textIsSelectable="true"
/>
個別ではなく、グループ全体として選択可能にする方法はありますか? ありがとう、ロス。