我想在我的活动布局中添加标签,但我不希望活动扩展TabActivity。 http://developer.android.com/resources/tutorials/views/hello-tabwidget.html中的示例仅提供了TabActivity的子类示例。
有没有办法在没有扩展TabActivity的情况下实现它?
感谢。
答案 0 :(得分:5)
我明白了。
在Xml文件中,我应该像下面这样定义TabHost:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mytabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
在Java文件中:
public class HelloTest extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TabHost tabHost = (TabHost) findViewById(R.id.mytabhost);
tabHost.setup();