search

Home  >  Q&A  >  body text

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

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

PHP中文网PHP中文网2772 days ago551

reply all(3)I'll reply

  • 黄舟

    黄舟2017-04-17 17:45:01

    Just set the icon attribute in AndroidManifest

    reply
    0
  • PHP中文网

    PHP中文网2017-04-17 17:45:01

        <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 upstairs

    reply
    0
  • 黄舟

    黄舟2017-04-17 17:45:01

    AndroidManifest, android:icon="" in application just select the picture you want

    reply
    0
  • Cancelreply