0

これは、先日私を悩ませていたものです。そのため、onCreate() の変数である mTab​​Host への null ポインター参照を取得し続けます。関連するコードは次のとおりです。

私の主な活動から:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    instance = this;
    setContentView(R.layout.second_activity);

    // Initializing ViewPager and TabHost objects:
    mViewPager = new ViewPager(this);
    mViewPager.setId(R.id.viewpager);
    setContentView(mViewPager);
    mTabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);
    mTabHost.setup(this,getSupportFragmentManager());

}

そして、ここに second_activity.xml があります:

<?xml version="1.0" encoding="UTF-8"?>

<android.support.v4.app.FragmentTabHost
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="bottom">

        <fragment android:name="com.yolostudios.dots.main.login.LoginFragment"
            android:id="@+id/login_fragment"
            android:layout_weight="2"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:visibility="gone"/>

        <TabWidget
            android:id="@android:id/tabs"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"/>

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="0"/>

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="8" >

            <include
                android:layout_width="fill_parent"
                android:layout_height="60dip"
                android:visibility="invisible"
                android:layout_gravity="bottom"
                android:focusable="true"
                layout="@layout/createspotbutton" />

        </android.support.v4.view.ViewPager>

        <!-- Loading header of this UI which is coded separately -->

        <FrameLayout
            android:id="@+id/toolbar_container"
            android:layout_width="match_parent"
            android:layout_height="50dp" >

            <include
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:padding="20dp"
                layout="@layout/toolbar" />

        </FrameLayout>

    </LinearLayout>

</android.support.v4.app.FragmentTabHost>

mTabHost が null であるため、mTabHost.setup(this,getSupportFragmentManager()) を実行すると、実際の例外がスローされます。

私が気づいた奇妙なことは、Support4Demos で提供されているサンプルの FragmentTabs でも機能しないことです。これは私の android-support-v4.jar または私の環境に何か問題があることを示していると確信していますが、jar を再ダウンロードして再コンパイルしようとしましたが、まだ何も機能しません: うまくコンパイルしたにもかかわらず、私のプロジェクトとサンプル プロジェクトは実行時に失敗します。その他の考えられる環境問題については、何が原因なのかわかりません。

任意の提案をいただければ幸いです。

ありがとう、アンドリュー。

4

3 に答える 3

0

これが当てはまるかどうかはわかりません。ただし、使用するときは、以下のメッセージに注意してくださいFragment/FragmentHost/FragmentActivity

Activityandroid.app.Fragment; を使用している場合は使用を覚えておいてください。を使用しFragmentActivityている場合に使用しandroid.support.v4.app.Fragmentます。android.support.v4.app.FragmentまたはFragmentHostにアタッチしないでください。アタッチするandroid.app.Activityと、Exceptionがスローされます。

于 2013-07-23T04:39:16.297 に答える
0

たぶん、次のように変更すると:

setContentView(R.layout.second_activity);
mTabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);

// Initializing ViewPager and TabHost objects:
mViewPager = new ViewPager(this);
mViewPager.setId(R.id.viewpager);
setContentView(mViewPager);
mTabHost.setup(this,getSupportFragmentManager());

}

最初のレイアウト ファイル内にあるオブジェクトを見つける前に、別のレイアウトで setContentView を呼び出しているのでしょうか。

于 2013-07-23T04:35:32.197 に答える
0

試す

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    instance = this;
    setContentView(R.layout.second_activity);
    mTabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);
    mTabHost.setup(this,getSupportFragmentManager());

    // Initializing ViewPager and TabHost objects:
    mViewPager = new ViewPager(this);
    mViewPager.setId(R.id.viewpager);
    setContentView(mViewPager);


}
于 2013-07-23T04:11:29.813 に答える