私はこの質問(http://stackoverflow.com/questions/1521640/standard-android-button-with-a-different-color)を見ました、そしてそれは通常のボタンのためにうまく働きます。ここで、同じ手順をImageButtonに適用したいと思いました。この手順で、android:src = "@ drawable/icon_name"を使用してアイコンを追加します。
styles.xmlで次のスタイルを定義しました
<style name="ImageButton" parent="android:Widget.ImageButton">
<item name="android:background">@drawable/custom_image_button</item>
</style>
見積もりのcustom_button.xmlと同様にcustom_image_button.xmlを設定しますが、問題は、テーマを定義することで、類似したものを見つけることができるということandroid:buttonStyle
ですandroid:imageButtonStyle
。その点に到達する別の方法はありますか?または、ImageButtonをカスタマイズするときに、状態ごとに1つのアイコンを作成する唯一のオプションですか?