gpt4 book ai didi

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

转载 作者:数据小太阳 更新时间:2023-10-29 02:57:53 25 4
gpt4 key购买 nike

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

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

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

最佳答案

也许您应该只为您的 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"/>

关于android - 自定义布局 Android 中的图标大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14583906/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com