-
//MainActivity.java
-
-
public class MainActivity extends TabActivity
-
{
-
@Override
-
public void onCreate(Bundle savedInstanceState)
-
{
-
super.onCreate(savedInstanceState);
-
setContentView(R.layout.main);
-
// 获取该Activity里面的TabHost组件
-
TabHost tabHost = getTabHost();
-
// 创建第一个Tab页
-
TabHost.TabSpec tab1 = tabHost.newTabSpec("tab1")
-
.setIndicator("已接电话") // 设置标题
-
.setContent(R.id.tab01); //设置内容
-
// 添加第一个标签页
-
tabHost.addTab(tab1);
-
TabHost.TabSpec tab2 = tabHost.newTabSpec("tab2")
-
// 在标签标题上放置图标
-
.setIndicator("呼出电话", getResources()
-
.getDrawable(R.drawable.tiger))
-
.setContent(R.id.tab02);
-
// 添加第二个标签页
-
tabHost.addTab(tab2);
-
TabHost.TabSpec tab3 = tabHost.newTabSpec("tab3")
-
.setIndicator("未接电话")
-
.setContent(R.id.tab03);
-
// 添加第三个标签页
-
tabHost.addTab(tab3);
-
}
-
}
-
-
-
//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="match_parent"
-
android:layout_height="match_parent"
-
android:layout_weight="1">
-
<LinearLayout
-
android:layout_width="match_parent"
-
android:layout_height="match_parent"
-
android:orientation="vertical">
-
<TabWidget
-
android:id="@android:id/tabs"
-
android:layout_width="match_parent"
-
android:layout_height="wrap_content"/>
-
<FrameLayout
-
android:id="@android:id/tabcontent"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent">
-
<!-- 定义第一个标签页的内容 -->
-
<LinearLayout
-
android:id="@+id/tab01"
-
android:orientation="vertical"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent">
-
<TextView
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:text="女儿国国王 - 2012/12/12"
-
android:textSize="11pt" />
-
<TextView
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:text="东海龙女 - 2012/12/18"
-
android:textSize="11pt" />
-
</LinearLayout>
-
<!-- 定义第二个标签页的内容 -->
-
<LinearLayout
-
android:id="@+id/tab02"
-
android:orientation="vertical"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent">
-
<TextView
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:text="白骨精 - 2012/08/12"
-
android:textSize="11pt" />
-
<TextView
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:text="蜘蛛精 - 2012/09/20"
-
android:textSize="11pt" />
-
</LinearLayout>
-
<!-- 定义第三个标签页的内容 -->
-
<LinearLayout
-
android:id="@+id/tab03"
-
android:orientation="vertical"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent"
-
android:textSize="11pt">
-
<TextView
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:text="孙悟空 - 2012/09/19"
-
android:textSize="11pt" />
-
<TextView
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:text="猪八戒 - 2012/10/12"
-
android:textSize="11pt" />
-
</LinearLayout>
-
</FrameLayout>
-
</LinearLayout>
-
</TabHost>