アクションバーのアイコンとして最終的に使用される大きな画像があります。なので、その前にサイズを小さくしたいと思います。
XML経由でそれを行うにはどうすればよいですか?
スタイル.xml:
<style name="AppTheme" parent="android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/actionBarStyle</item>
</style>
<style name="actionBarStyle" parent="android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">@drawable/shape_gradient_action_bar</item>
<item name="android:displayOptions">showHome</item>
<item name="android:icon">@drawable/icon</item>
</style>
icon.xml:
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ford_dtect_logo_on_white"
android:width="50dp" -- Doesn't work
android:height="50dp" > -- Doesn't work
</bitmap>
前もって感謝します。