从零开始学android开发-adt-bundle-eclipse下的修改android app名称

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开发-adt-bundle-eclipse下的修改android app名称

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

你可能感兴趣的:(Android开发)