startActivity(getIntent()) と finish() を呼び出す「更新」ボタンを実装しました。アクティビティを再度取得すると、下部のタブがなくなります。私が何を見逃したのですか?
main.xml:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:layout_marginBottom="-4dp" />
<ListView
android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
</TabHost>
onCreate が呼び出されると、いくつかのデータを入力すると、画面の下部にタブが表示されます。「更新」ボタンをクリックすると、次のコードが実行されます。
startActivity(getIntent(); 終了();
この時点で、下部にタブのない画面が表示されます。
XML を調べると、タブをクリックしたときに読み込まれた XML に TAB タグが含まれていないことがわかります。これはおそらく、タブを介してアクティビティをロードしたときに見つかりますが、startActivity を介してアクティビティを開始すると、タブがなくなります。
ありがとう。