嘗試我的第一個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>
刪除它並û清潔烏爾項目,並再次運行呢? –
嘗試在您的模擬器中再次安裝修改後的應用程序 –
您正在從'activity_main.xml'中刪除Hello world'TextView'。相反,將它從'fragment_main.xml'中刪除, – Lal