删除字符串后,为什么Hello World仍会显示?

时间:2014-05-11 06:52:50

标签: android

尝试我的第一个Android应用,删除了" Hello World"字符串,但在我的设备上运行时仍然看到它。为什么呢?

另一个问题是,如何将其设置为其他值?例如,我想将其设置为"应用程序创建"在OnCreate()

的末尾

这是我的OnCreate()功能,没有任何改变:

protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  if (savedInstanceState == null) {
    getSupportFragmentManager().beginTransaction()
        .add(R.id.container, new PlaceholderFragment()).commit();
  }
}

这是我的activity_main.xml,只是简单地删除了" Hello World"图形布局中的字符串:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.dqtools.egg.MainActivity"
    tools:ignore="MergeRootFrame" >
</FrameLayout>

2 个答案:

答案 0 :(得分:1)

您正在从TextView删除Hello world activity_main.xml。而是从fragment_main.xml

删除它

答案 1 :(得分:0)

转到res&gt;值&gt;字符串 有变化

 <string name="hello_world">Hello World</string>

<string name="hello_world">Anything u want</string>