これは、先日私を悩ませていたものです。そのため、onCreate() の変数である mTabHost への 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 を再ダウンロードして再コンパイルしようとしましたが、まだ何も機能しません: うまくコンパイルしたにもかかわらず、私のプロジェクトとサンプル プロジェクトは実行時に失敗します。その他の考えられる環境問題については、何が原因なのかわかりません。
任意の提案をいただければ幸いです。
ありがとう、アンドリュー。