码迷,mamicode.com
首页 > 移动开发 > 详细

adt-bundle-eclipse下的修改android项目名

时间:2015-04-10 10:47:57      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

eclipse中,打开项目根目录中的AndoirManifest.xml文件,找到如下内容

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme"
        android:debuggable="true">
        <activity          
            android:name="com.demo.firstapp.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

按住Ctrl键单击第四行内容:android:label="@string/app_name"

eclipse界面即自动打开项目中/res/values/strings.xml文件,内容如下

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">AndroidIntro</string>
    <string name="hello_world">Hello world!</string>
    <string name="menu_settings">More</string>

</resources>

其实,修改程序名的内容是在此文件的<string name="app_name">标签中修改的,此时只需将/res/values/strings.xml中的app_name标签内容修改为目标内容,本例修改为FirstAPP,运行程序,即可达到预期目的,程序名称已经由AndroidIntro改为FirstAPP,如下图。

技术分享

android项目的activity的layout设置,可以把所有TextView的必要硬编码值放置/res/valuse/strings.xml中定义。

adt-bundle-eclipse下的修改android项目名

标签:

原文地址:http://www.cnblogs.com/dekevin/p/4413725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!