Android中如何设置应用程序的启动图标?

Android中如何设置应用程序的启动图标?

阅读 7.5k
3 个回答

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=""选择你想要的图片即可

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题