1.写好配置文件

tabhost.xml

<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    >    <!-- 第一个Tab对应的布局 -->    <LinearLayout    android:id="@+id/widget_layout_call"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical"    >    <TextView    android:id="@+id/txt1"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:text="aaaaaaaa"    />    </LinearLayout>    <!-- 第二个Tab对应的布局 -->    <LinearLayout    android:id="@+id/widget_layout_log"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical"    >    <TextView    android:id="@+id/txt2"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:text="bbbbbbbbbbbbb"    />        </LinearLayout></FrameLayout>

第二步,一个Acitivyt继承自 TabActivity

onCreate 方法中:

TabHost tabHost = getTabHost();LayoutInflater.from(this).inflate(R.layout.custom_tabhost,tabHost.getTabContentView(), true);// call // log // linkman // sms //sign/* 电话 */tabHost.addTab(tabHost.newTabSpec("call")  //tab的标识.setIndicator("", getResources().getDrawable(R.drawable.icon)) // 选项卡显示的文字和图片.setContent(R.id.widget_layout_call));/* 通话记录 */tabHost.addTab(tabHost.newTabSpec("log").setIndicator("", getResources().getDrawable(R.drawable.icon)) // 选项卡显示的文字和图片.setContent(R.id.widget_layout_call));

显示效果:

更多相关文章

  1. Android(安卓)BaseExpandableListAdapter 教程
  2. Android(安卓)网络图片查看器
  3. Android(安卓)BaseExpandableListAdapter 教程
  4. android 按钮的文字显示不全
  5. Android画虚线
  6. Android(安卓)TextView限定行数最大值,点击按钮显示所有内容
  7. android 如何从sqlite读取数据到spinner下拉中显示
  8. android调用NotificationManager.notify无效,通知栏不显示
  9. android隐藏以及显示软键盘以及不自动弹出键盘的方法

随机推荐

  1. Android(安卓)socket编程要点
  2. Android里把Dialog设置为全屏的方法
  3. Android(安卓)JetPack——DataBinding
  4. android中使用SurfaceView做视频播放器--
  5. 【收藏】Android开源项目和 框架
  6. android 8.0报错 Only fullscreen opaque
  7. Android(安卓)关于 OnScrollListener 事
  8. android.view.ViewRootImpl$CalledFromWr
  9. Android之TabHost
  10. SDK + ADT + Android(安卓)Studio 国内下