当我尝试使用 Activity 的意图打开 TabActivity 时遇到问题。
我的活动代码(ConnexionActivity),它不是来自选项卡的活动:
buttonConnexion.setOnClickListener(new OnClickListener(){
public void onClick(View v) {
Intent intent = new Intent(ConnexionActivity.this, NeurokiffMobileActivity.class);
startActivity(intent);
}
});
和 TabActivity (NeurokiffMobileActivity) :
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
this.getIntent();
/* ******** Gestion Onglets ******** */
res = getResources(); // Resource object to get Drawables
tabHost = (TabHost) findViewById(android.R.id.tabhost); // The activity TabHost
/* *** Onglet "Evènements" *** */
/* Intent responsable de lancer l'activité depuis l'onglet */
intent = new Intent().setClass(this, EvenementActivity.class);
bundleEnvoye.putString("id_user", idUser);
intent.putExtras(bundleEnvoye);
/* Crée un TabSpec et l'ajoute au TabHost */
spec = tabHost.newTabSpec("evenement").setIndicator("Evenements",
res.getDrawable(R.drawable.ic_tab_evenement))
.setContent(intent);
tabHost.addTab(spec);
/* *** Onglet "Favoris" *** */
intent = new Intent().setClass(this, FavorisActivity.class);
bundleEnvoye.putString("id_user", idUser);
intent.putExtras(bundleEnvoye);
spec = tabHost.newTabSpec("favoris").setIndicator("Favoris",
res.getDrawable(R.drawable.ic_tab_favoris))
.setContent(intent);
tabHost.addTab(spec);
/* *** Onglet "Kiffs" *** */
intent = new Intent().setClass(this, KiffsActivity.class);
bundleEnvoye.putString("id_user", idUser);
intent.putExtras(bundleEnvoye);
spec = tabHost.newTabSpec("kiffs").setIndicator("Kiffs",
res.getDrawable(R.drawable.ic_tab_kiffs))
.setContent(intent);
tabHost.addTab(spec);
tabHost.setCurrentTab(0);
}
和这个 TabActivity 的 .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="fill_parent"
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"/>
</LinearLayout>
</TabHost>
错误是 NeurokiffMobileActivity 的 onCreate 方法上的 NullPointerException,应用程序关闭。当我在意图中放置另一个“简单”活动而不是 NeurokiffMobileActivity 时,它可以工作。
有人能帮助我吗 ?由于TabActivity,这似乎是一个问题,但我不知道是哪个......
提前致谢 !;)