我想使用TabHost,但我的應用程序意外停止。我真的不知道,問題是什麼,我是一名初學者的android程序員。java(android) - 意外的錯誤TabHost
我使用4個java類,一個用於TabHost和另外三個類。
UnitCount類:
package com.eqsec.csaba;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TabHost;
import android.app.TabActivity;
public class UnitCount extends TabActivity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TabHost tabHost = getTabHost(); // The activity TabHost
TabHost.TabSpec spec; // Resusable TabSpec for each tab
Intent intent; // Reusable Intent for each tab
// Create an Intent to launch an Activity for the tab (to be reused)
intent = new Intent().setClass(this, Hosszusag.class);
// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("hosszusag").setIndicator("Husszusag")
.setContent(intent);
tabHost.addTab(spec);
// Do the same for the other tabs
intent = new Intent().setClass(this, Tomeg.class);
spec = tabHost.newTabSpec("tomeg").setIndicator("Tömeg")
.setContent(intent);
tabHost.addTab(spec);
intent = new Intent().setClass(this, Urtartalom.class);
spec = tabHost.newTabSpec("urtartalom").setIndicator("Űrtartalom")
.setContent(intent);
tabHost.addTab(spec);
tabHost.setCurrentTabByTag("hosszusag");
}
}
logcat的
我有3個班的另一個名爲Urtartalom.class,Hosszusag.class,Tomeg.class。 我應該改變android清單中的任何東西嗎?謝謝!
不要低估logcat的威力... – Selvin
可以請您發佈LogCat嗎? – coder
嗯..也許你可以向我們展示你的佈局XML文件,並提供從LogCat堆棧跟蹤? –