Answers:
为了获得更好的结果:
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@android:drawable/ic_button"
android:background="?attr/selectableItemBackgroundBorderless"
/>
android:theme="@style/Base.ThemeOverlay.AppCompat.Dark"
(适用于<API 21)。有关其他解决方案,请参见stackoverflow.com/q/28605031/599535。
您可以像这样向ImageButton添加背景:
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@android:drawable/btn_dialog"
android:background="?android:attr/selectableItemBackground" />
他们的答案之间的区别是?attr/selectableItemBackgroundBorderless
可以给您一个android.view.InflateException
,因此?android:attr/selectableItemBackground
解决方案是。
FWIW,我不知道为什么会发生异常,因为第一个答案在我所有的旧项目中都很好,但在我最近的项目中却没有(也许是因为应用主题= android:Theme.Material
?)。
发生的一件奇怪的事情是,尽管显示了波纹效果,但它超出了ImageButton的范围,因此解决方案是:
android:foreground="?android:attr/selectableItemBackgroundBorderless"
代替android:background="?android:attr/selectableItemBackgroundBorderless"
希望对您有帮助。
如果您已经有背景并且不想更改,请使用前景;
<ImageButton
android:layout_width="60dp"
android:layout_height="match_parent"
android:background="@drawable/preview_in_4k_background"
android:src="@drawable/ic_full_screen_24px"
android:layout_marginLeft="5dp"
android:foreground="?attr/selectableItemBackgroundBorderless"
android:layout_column="2"/>