修改app应用的图标与名字

在AndroidManifest.xml中

<application
android:icon="@mipmap/xxx"
android:label="@string/app_name"
...

前提是在工程文件的res下mipmap文件夹内导入需要的资源图片xxx.png
在strings.xml文件下写自己需要的app_name
例如:

<string name = "app_name">我的APP名称</string>