Android中如何设置应用程序的启动图标?
PHP中文网
PHP中文网 2017-04-17 17:43:01
0
3
548

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

PHP中文网
PHP中文网

认证高级PHP讲师

reply all(3)
黄舟

Just set the icon attribute in AndroidManifest

洪涛
    <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

黄舟

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template