1

次のような簡単なタブホストの例を書きました

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
        </TabWidget>

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >

            <LinearLayout
                android:id="@+id/tab1"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" >

                <Button
                    android:id="@+id/button1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <Button
                    android:id="@+id/button2"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <TextView
                    android:id="@+id/textView1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Large Text"
                    android:textAppearance="?android:attr/textAppearanceLarge" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/tab2"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" >

                <Button
                    android:id="@+id/button3"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/tab3"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" >

                <TextView
                    android:id="@+id/tv2"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Large Text"
                    android:textAppearance="?android:attr/textAppearanceLarge" />
            </LinearLayout>
        </FrameLayout>
    </LinearLayout>

</TabHost>

これはmain.xmlにあるので、setcontentviewをmain.xmlに設定します

public class AndroidtabhostActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

Android 4.0エミュレーターでは正常に動作しますが、Android 2.1エミュレーターで実行すると、これらのログがddmsで強制的に閉じられます

03-16 17:19:08.295: E/AndroidRuntime(1579):     at android.view.ViewRoot.handleMessage(ViewRoot.java:1819)
03-16 17:39:27.016: E/AndroidRuntime(2092): Uncaught handler: thread main exiting due to uncaught exception
03-16 17:39:27.036: E/AndroidRuntime(2092): java.lang.RuntimeException: Unable to start activity ComponentInfo{banana.com/banana.com.AndroidtabhostActivity}: java.lang.RuntimeException: Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2496)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.app.ActivityThread.access$2200(ActivityThread.java:119)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.os.Handler.dispatchMessage(Handler.java:99)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.os.Looper.loop(Looper.java:123)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.app.ActivityThread.main(ActivityThread.java:4363)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at java.lang.reflect.Method.invokeNative(Native Method)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at java.lang.reflect.Method.invoke(Method.java:521)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at dalvik.system.NativeStart.main(Native Method)
03-16 17:39:27.036: E/AndroidRuntime(2092): Caused by: java.lang.RuntimeException: Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.app.TabActivity.onContentChanged(TabActivity.java:105)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:201)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.app.Activity.setContentView(Activity.java:1622)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at banana.com.AndroidtabhostActivity.onCreate(AndroidtabhostActivity.java:11)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
03-16 17:39:27.036: E/AndroidRuntime(2092):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2459)
03-16 17:39:27.036: E/AndroidRuntime(2092):     ... 11 more

なぜそうなのか???誰か説明してくれませんか

サミールが言ったように変更した後、まだ例外が発生しています

03-16 17:50:03.925: E/AndroidRuntime(2372): Uncaught handler: thread main exiting due to uncaught exception
03-16 17:50:03.936: E/AndroidRuntime(2372): java.lang.NullPointerException
03-16 17:50:03.936: E/AndroidRuntime(2372):     at android.widget.TabHost.dispatchWindowFocusChanged(TabHost.java:295)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:661)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:661)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at android.view.ViewRoot.handleMessage(ViewRoot.java:1819)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at android.os.Handler.dispatchMessage(Handler.java:99)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at android.os.Looper.loop(Looper.java:123)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at android.app.ActivityThread.main(ActivityThread.java:4363)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at java.lang.reflect.Method.invokeNative(Native Method)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at java.lang.reflect.Method.invoke(Method.java:521)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
03-16 17:50:03.936: E/AndroidRuntime(2372):     at dalvik.system.NativeStart.main(Native Method)
4

2 に答える 2

1

Android の Tabhost にはバグがあります。タブを作成するための詳細については、私のブログを確認してください

tabhost を検索して、対応する情報をすぐに取得します。

于 2012-03-16T12:50:16.640 に答える
0

少なくとも1つのタブを設定する必要がありました。そうしないと、2.1でエラーが発生しますが、4.0はそれなしで処理するため、setcontentviewの後にこのコードを追加しました。

TabHost th = (TabHost) findViewById(R.id.mytabhost);
    th.setup();
    TabSpec ts = th.newTabSpec("whatevver");
    ts.setContent(R.id.tab1);
    ts.setIndicator("TAB1");
    th.addTab(ts); 

両方のエミュレーターで正常に動作しました。

于 2012-03-16T21:46:37.370 に答える