AS- modify the icons and names APP

Modify icon

Drawable advance icon pictures into folders and name (not including Kanji)
found in the AndroidManifest.xml file android: icon line, the path to the picture is written within quotation marks.

<application
        android:name="org.litepal.LitePalApplication"
        android:allowBackup="true"
        android:icon="这里填入图标文件路径"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

change name

Found in the AndroidManifest.xml file android: label line, ctrl + left-click app_name (then click on the last app_name), open strings.xml file. Modify the content.

<string name="app_name">在这填入你想要的名字</string>

Values ​​or open the folder and then open the file strings.xml, as do the operation.

Released six original articles · won praise 0 · Views 1265

Guess you like

Origin blog.csdn.net/yiself/article/details/101284936