Android應用圖示
阿新 • • 發佈:2018-11-04
圖示位置:app——>res——>mipmap——>ic_launcher.png
hdpi:高解析度
mdpi:低解析度
圖示的尺寸: 48px、72px、96px、144px、192px
在app——>manifests下的AndroidManifest.xml中修改即可
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.moliwei.myapplication"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" //這個就是指定icon的程式碼,不需要修改或者改成你想要的檔案的名字,記住圖片的字尾為png android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>