扫码关注官方订阅号
Android中如何设置应用程序的启动图标?
认证高级PHP讲师
AndroidManifest里面设置icon属性就可以了
<application android:name=".BaseApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" //在这里 android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/BaseAppTheme">
楼上+1
AndroidManifest,application中android:icon=""选择你想要的图片即可
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
AndroidManifest里面设置icon属性就可以了
楼上+1
AndroidManifest,application中android:icon=""选择你想要的图片即可