我想定製一些無邊界的ImageButtons。爲了避免重複代碼,我用styles.xml
:styles.xml繼承「?android:attr/borderlessButtonStyle」?
<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?
仍然不能在更高的API上工作,這個答案似乎是錯誤的 – Sergii
aleung answer is working,s這個答案不是正確的,只是提供了額外的信息。 – Seynorth
請接受http://stackoverflow.com/a/30965291/883738 –