正如标题所说,我试图在我的应用程序中设置这个 TabView,每次我去运行那个活动时,只是一个黑屏?我查看了一些教程,但仍然没有运气,这就是我的活动。
protected void onCreate(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tabView);
TabHost tabHost = (TabHost) findViewById(R.id.tabhost);
tabHost.setup();
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(new ColorDrawable(Color.BLACK));
getActionBar().setDisplayShowTitleEnabled(false);
TabSpec tabSpec1 = tabHost.newTabSpec("tag1");
tabSpec1.setContent(R.id.Tab1);
tabSpec1.setIndicator("Tab1");
tabHost.addTab(tabSpec1);
TabSpec tabSpec2 = tabHost.newTabSpec("tag2");
tabSpec2.setContent(R.id.Tab2);
tabSpec2.setIndicator("Tab2");
tabHost.addTab(tabSpec2);
TabSpec tabSpec3 = tabHost.newTabSpec("tag3");
tabSpec3.setContent(R.id.Tab3);
tabSpec3.setIndicator("Tab3");
tabHost.addTab(tabSpec3);
}