首页 > 移动平台 > 详细

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

时间:2015-04-10 10:45:29      阅读:245      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!