您的位置:首页 > 编程语言 > Go语言

简述修改logo以及文字

2015-12-12 12:38 429 查看
在清单文件中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>


效果如下:



传承者(Inheritors)欢迎各位纠正错误,评论,吐槽!!!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: