我有一个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"
/>
有没有办法让selectable成为一个整体而不是单独?谢谢,罗斯。
答案 0 :(得分:0)
您可以将它们放在LinearLayout
内并设置点击方式,当用户点击其中任何一个时,他们会实际点击它们所在的布局并给出他们是整个群组的印象。