我有一个项目,我几天前作为一个测试项目创建,现在我已经完成了一些非常好的东西,我需要更改一些基本信息。
我正在使用Eclipse IDE,我能够改变一些东西,比如类名。问题是我无法弄清楚在哪里更改项目名称。
对于我的Android模拟器上安装的应用程序,应用程序图标下方的文本显示测试名称。我该如何改变?
答案 0 :(得分:4)
在strings.xml
目录中打开res/values
,如果您在'strings.xml'视图中,则更改XML元素<string name="app_name">
中的值。
或者,如果您正在“资源”视图下查看文件,则可以编辑app_name的值。
答案 1 :(得分:1)
如果我们编辑应用程序名称意味着它会在某些情况下产生一些问题。因此,请勿更改您的应用名称。为此,在Project中创建一个新字符串 - &gt; res ---&gt; val ---&gt; String.xml <resources>
<string name="app_name">ABDUL</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>
<string name="rainbow">Rainbow</string>
</resources>
接着在Android Manifest文件中编辑你在字符串xml中给出的相应app_name为`&lt;活动 机器人:名字= “com.example.ABDUL.MainActivity” android:label =“@ string / rainbow”// 修改名称 android:icon =“@ drawable / qwerty”&gt;
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>`