我想在android应用程序的每个页面上显示和处理tabhost控件的事件,而不是一次又一次地创建它,就像在asp.net中我们有我们可以放置常用控件的母版页概念,android中有什么东西,所以我可以把tabcontrol放在那里。
答案 0 :(得分:1)
您应该使用TabActivity扩展Activity,还可以使用TabHost和TabSpec xml的一个例子是
<?xml version="1.0" encoding="utf-8"?>
<TabHost android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost">
<LinearLayout android:id="@+id/LinearLayout01"
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
</TabWidget>
<FrameLayout android:id="@android:id/tabcontent"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
</FrameLayout>
</LinearLayout>
</TabHost>