修改圖示
事先將圖示圖片放入drawable檔案夾中并命名(不能含漢字)
在AndroidManifest.xml檔案中找到android:icon行,引號內寫入圖片路徑即可,
<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">
修改名字
在AndroidManifest.xml檔案中找到android:label行,ctrl+左鍵點擊app_name(再點擊最后一個app_name),打開strings.xml檔案,修改內容,
<string name="app_name">在這填入你想要的名字</string>
或者打開values檔案夾再打開strings.xml檔案,做如上操作,
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/41921.html
標籤:其他
上一篇:Process finished with exit code -1073741818 (0xC0000006)
下一篇:Command errored out with exit status 1: python setup.py egg_info Check the logs
