我有一个生成文本视图列表的 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"
/>
有没有办法让整个组而不是单独选择?谢谢,罗斯。