不同分辨率 对应图片的大小如下:
m ?48x48 h ? 72x72 xh ?96x96 xxh ?144x144 xxxh ?192x192
通过Android studio 获取到的尺寸大小,所以可以让设计设计多张启动图,如果只给设计一张,那就要 192x192的大小。
获取到启动图 ,点击主模块中的res ,然后右键,出现一个弹框如下:
选择new-----Image Asset
?path 选择 启动图标的位置
修改 ic_launcher_background 背景为透明的
?E:\xxxx\Android Studio\plugins\android\resources\images\asset_studio\ic_launcher_background.xml
?如下:<?xml version="1.0" encoding="utf-8"?> <vector ? ? android:height="108dp" ? ? android:width="108dp" ? ? android:viewportHeight="108" ? ? android:viewportWidth="108" ? ? xmlns:android="http://schemas.android.com/apk/res/android"> ? ? <path android:fillColor="#00000000" ? ? ? ? ? android:pathData="M0,0h108v108h-108z"/> ? ?? </vector>
resize 调整图标的大小
?图标大小修改完成 一直点击next? 到最后的finish 结束
|