对于textView需要同时设置
android:clickable="true"
android:background="?android:attr/selectableItemBackground"
这两个属性才起作用
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="26sp"
android:text="hello"
android:clickable="true"
android:background="?android:attr/selectableItemBackground"/>
网友评论