我想定制一些无边框的 ImageButtons。为了避免代码重复,我使用styles.xml
:
<style name="EditNotesButton" parent="?android:attr/borderlessButtonStyle">
<item name="android:layout_width">25dp</item>
<item name="android:layout_height">25dp</item>
<item name="android:scaleType">fitCenter</item>
</style>
但是,会引发以下错误:
Error retrieving parent for item: No resource found that matches the given name '?android:attr/borderlessButtonStyle'.
有没有办法继承borderlessButtonStyle?