如何增加图片的宽度和高度?

时间:2019-03-22 09:57:57

标签: android android-activity android-drawable android-theme android-background

我的活动布局为。我直接在AndroidManifest中将其设置为主题:

android:theme="@style/MyTheme">

我的主题仅包含背景:

<style name="MyTheme"
    <item name="android:windowBackground">@drawable/background</item>
</style>

这是仅包含一项的后台文件:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:width="200dp"
        android:height="200dp">
        <bitmap
            android:gravity="center"
            android:src="@mipmap/ic_launcher"/>
    </item>
</layer-list>

ic_launcher是具有不同大小(hdpi,mdpi等)的图标。问题是,如果我将widthheight设置为200dp,则项目会变大,但图像仍然很小。如果我将widthheight设置为bitmap,则什么也没发生。

如何增加实际图片的宽度和高度?

1 个答案:

答案 0 :(得分:2)

在这种情况下,您应该尝试使用Vector Image以获得适合任何高度或比率的适当质量。