简述修改logo以及文字

在清单文件中AndroidManifest.xml更改

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.admin.zhbj"> <application  android:allowBackup="true" <!-- 这里改logo--> android:icon="@mipmap/ic_launcher" <!--这里改文字 --> android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> </activity> <activity android:name=".SplashActivity" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> 

修改文字(Modify the words)最好是在string.xml文件下更改

<resources>
    <string name="app_name">Camera</string>
</resources>

效果如下:
简述修改logo以及文字_第1张图片

传承者(Inheritors)欢迎各位纠正错误,评论,吐槽!!!

你可能感兴趣的:(android)