在应用程序标签页里面有没有hello应用程序图标?

解决方案 »

  1.   

    运行时是先进入主界面(桌面),过两三秒秒钟,再进入自己的应用程序界面的
    默认创建一个应用程序后,不做任何修改,会显示“Hello World, XXX!”
    这是因为在strings.xml中,有默认的hello字符串,内容如下:
    <string name="hello">Hello World, XXX!</string> XXX代表应用程序名
      

  2.   

    这是我的 代码 
    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <string name="hello">Hello World, test!</string>
        <string name="app_name">test</string>
    </resources>
    这是我strings.xml中的代码