縁なしの ImageButton をいくつかカスタマイズしたいと思います。コードの重複を避けるために、次を使用します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を継承する方法はありますか?