自定义布局Android中的图标大小

时间:2013-01-29 13:20:26

标签: android xml icons android-imageview

我想在自定义标题栏中更改应用图标的大小。到目前为止,这是我的代码:

<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>

这会在标题栏的左侧生成一个图标,但如何更改图标的大小?我希望图标更大一些。

1 个答案:

答案 0 :(得分:5)

也许您应该为ImageView设置特定的DP属性。坚持使用DP,并且可以在所有设备上正常使用。像这样:

<ImageView
    android:id="@+id/header"
    android:src="@drawable/ic_launcher"
    android:layout_width="48dp"
    android:layout_height="48dp"
    android:adjustViewBounds="true"
    android:scaleType="fitXY"/>