Heim  >  Fragen und Antworten  >  Hauptteil

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

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

PHP中文网PHP中文网2741 Tage vor524

Antworte allen(3)Ich werde antworten

  • 黄舟

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

    AndroidManifest里面设置icon属性就可以了

    Antwort
    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

    Antwort
    0
  • 黄舟

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

    AndroidManifest,application中android:icon=""选择你想要的图片即可

    Antwort
    0
  • StornierenAntwort