如何Button
用自定义背景和属性定义一个
"?attr/selectableItemBackground"
?
使用此代码,该"?attr/selectableItemBackground"
属性将被忽略,它不显示触摸反馈。
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:foreground="?attr/selectableItemBackground"/>
使用这个其他代码,可选择的工作,但我失去了背景颜色:
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"/>