2014-05-11 70 views
0

嘗試我的第一個Android應用程序,刪除了「Hello World」字符串,但仍在我的設備上運行時看到它。爲什麼?爲什麼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> 
+3

刪除它並û清潔烏爾項目,並再次運行呢? –

+0

嘗試在您的模擬器中再次安裝修改後的應用程序 –

+1

您正在從'activity_main.xml'中刪除Hello world'TextView'。相反,將它從'fragment_main.xml'中刪除, – Lal

回答

1

您要刪除世界,你好TextViewactivity_main.xml ..Instead,從fragment_main.xml

0

去水庫>值>字符串 有改變

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

<string name="hello_world">Anything u want</string> 
相關問題