カスタム タイトル バーでアプリのアイコンのサイズを変更したいと考えています。これまでの私のコードは次のとおりです。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:paddingLeft="5dip"
android:background="#000000">
<ImageView
android:id="@+id/header"
android:src="@drawable/ic_launcher"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:scaleType="fitXY"/>
</LinearLayout>
私のstyles.xmlファイルは次のとおりです。
<style name="CustomWindowTitleBackground">
<item name="android:background">#00000000</item>
</style>
<style name="CustomTheme" parent="android:Theme">
<item name="android:windowTitleSize">30dip</item>
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
</style>
これにより、タイトルバーの左側にアイコンが生成されますが、アイコンのサイズを変更するにはどうすればよいですか? アイコンをもう少し大きくしてほしい。