我的活动布局为否。我直接在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等)的图标。问题是,如果我将width
和height
设置为200dp
,则项目会变大,但图像仍然很小。如果我将width
和height
设置为bitmap
,则什么也没发生。
如何增加实际图片的宽度和高度?
答案 0 :(得分:2)
在这种情况下,您应该尝试使用Vector Image
以获得适合任何高度或比率的适当质量。