在改xml文件中设置了application节点的android:label="AAA"  
而activity的是android:label="Bye"  为何在home页面显示的还是Bye,而进入改程序后里面也是Bye,AAA应该体现在哪里???  

解决方案 »

  1.   

    在Settings里面有体现
    Settings--->Applications-->Manage applications-->Downloaded下就可以看到有个叫AAA的应用而没有叫Bye的应用
      

  2.   

    android:label 
    A user-readable label for the application as a whole, and a default label for each of the application's components.  android:label 
    A user-readable label for the activity. The label is displayed on-screen when the activity must be represented to the user. It's often displayed along with the activity icon. 
    If this attribute is not set, the label set for the application as a whole is used instead (see the <application> element's label attribute). 第一个是application的解释,第二个是activity的。
    application定义的是整个应用每个组件默认标签,当activity的标签没设置则使用application定义的标签