如何在单击 TextView 时突出显示它,就像单击 Button 时一样

How to highlight a TextView when you click on it just like when you click on a Button

默认情况下,当您单击按钮时,它会突出显示。如何在用户点击 TextView 时做同样的事情?

您应该能够在 xml 布局文件中进行设置,方法是将视图设置为可点击并正确设置 foreground 属性。

例如:

...
<TextView
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:foreground="?attr/selectableItemBackground"
    android:clickable="true"
    android:focusable="true"
/>
...

请注意,foreground 仅适用于 Android API 版本 23 或更高版本。如果您需要在低于该版本的版本中使用它,请将 android:foreground 替换为 android:background。不完全相同的行为(波纹效果放置在文本的背景中,而不是像 属性 名称所示的视图上方的一层),但它应该可以解决问题。