先看看效果图吧,个人觉得图标丑了点,不过还行,自己用PS做的

下面是全部代码和流程,一定要按流程顺序来,不然错误!

1.tabhost.xml

  1. <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@android:id/tabhost"
  4. android:layout_width="fill_parent"
  5. android:layout_height="wrap_content" >
  6. <RelativeLayout
  7. android:id="@+id/relativelayout"
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent" >
  10. <FrameLayout
  11. android:id="@android:id/tabcontent"
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content" >
  14. <LinearLayout
  15. android:id="@+id/tab1"
  16. android:layout_width="fill_parent"
  17. android:layout_height="wrap_content"
  18. android:orientation="vertical" >
  19. </LinearLayout>
  20. <LinearLayout
  21. android:id="@+id/tab2"
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:orientation="vertical" >
  25. </LinearLayout>
  26. <LinearLayout
  27. android:id="@+id/tab3"
  28. android:layout_width="fill_parent"
  29. android:layout_height="wrap_content"
  30. android:orientation="vertical" >
  31. </LinearLayout>
  32. <LinearLayout
  33. android:id="@+id/tab4"
  34. android:layout_width="fill_parent"
  35. android:layout_height="wrap_content"
  36. android:orientation="vertical" >
  37. </LinearLayout>
  38. <LinearLayout
  39. android:id="@+id/tab5"
  40. android:layout_width="fill_parent"
  41. android:layout_height="wrap_content"
  42. android:orientation="vertical" >
  43. </LinearLayout>
  44. </FrameLayout>
  45. <TabWidget
  46. android:id="@android:id/tabs"
  47. android:layout_width="fill_parent"
  48. android:layout_height="wrap_content"
  49. android:layout_alignParentBottom="true"
  50. android:background="@drawable/tabwidget_bj" >
  51. </TabWidget>
  52. </RelativeLayout>
  53. </TabHost>

2.tab_item_view.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical" >
  6. <ImageView
  7. android:id="@+id/imageview"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_gravity="center_horizontal|top"
  11. android:padding="3dp" />
  12. <TextView
  13. android:id="@+id/textview"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_gravity="center_horizontal|bottom"
  17. android:textColor="#fff"
  18. android:textSize="13sp"
  19. style="bold"/>
  20. </LinearLayout>

3.样式选择器selector:tab_item_style.xml,新建文件夹drawable,然后将该xml文件放进去

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3. <item android:drawable="@drawable/unpressed_bj" android:state_selected="false"/>
  4. <item android:drawable="@drawable/pressed_bj" android:state_selected="true"/>
  5. </selector>

4.java代码实现:MyTabHost.java

    1. package com.example.androidtabhost4;
    2. import android.os.Bundle;
    3. import android.app.Activity;
    4. import android.app.TabActivity;
    5. import android.content.Intent;
    6. import android.view.LayoutInflater;
    7. import android.view.Menu;
    8. import android.view.View;
    9. import android.widget.ImageView;
    10. import android.widget.TabHost;
    11. import android.widget.TextView;
    12. import android.widget.TabHost.TabSpec;
    13. public class MyTabHost extends TabActivity {
    14. private TabHost tabHost;
    15. private LayoutInflater layoutInflater;
    16. String[] mTitle = new String[] { "首页", "留言", "评论", "收藏", "更多" };
    17. int[] mIcon = new int[] { R.drawable.home, R.drawable.saying,
    18. R.drawable.zan, R.drawable.collect, R.drawable.more };
    19. int[] mTab = new int[] { R.id.tab1, R.id.tab2, R.id.tab3, R.id.tab4,
    20. R.id.tab5 };
    21. @Override
    22. protected void onCreate(Bundle savedInstanceState) {
    23. super.onCreate(savedInstanceState);
    24. setContentView(R.layout.tabhost);
    25. init();
    26. }
    27. public View getTabItemView(int i) {
    28. // TODO Auto-generated method stub
    29. View view = layoutInflater.inflate(R.layout.tab_item_view, null);
    30. ImageView imageView = (ImageView) view.findViewById(R.id.imageview);
    31. imageView.setImageResource(mIcon[i]);
    32. TextView textView = (TextView) view.findViewById(R.id.textview);
    33. textView.setText(mTitle[i]);
    34. return view;
    35. }
    36. public void init() {
    37. // TODO Auto-generated method stub
    38. tabHost = getTabHost();
    39. layoutInflater = LayoutInflater.from(this);
    40. for (int i = 0; i < mTitle.length; i++) {
    41. TabSpec tabSpec = tabHost.newTabSpec(mTitle[i])
    42. .setIndicator(getTabItemView(i)).setContent(mTab[i]);
    43. tabHost.addTab(tabSpec);
    44. tabHost.getTabWidget().getChildAt(i)
    45. .setBackgroundResource(R.drawable.tab_item_style);
    46. tabHost.setup();
    47. }
    48. }
    49. }

android自定义TabWidget样式的更多相关文章

  1. Android: 自定义Tab样式,一种简单的方式。

    之前看到过论坛里已经有人发过自定义Tab样式的帖子,感觉有些复杂了,这里分享个简单的方法. 1.制作4个9patch的tab样式,可参考android默认的资源 tab_unselected.9.pn ...

  2. Android 自定义title样式

    requestWindowFeature(featrueId),它的功能是启用窗体的扩展特性.参数是Window类中定义的常量.一.枚举常量1.DEFAULT_FEATURES:系统默认状态,一般不需 ...

  3. Android自定义ProgressBar样式

    我们使用的进度条多种多样,下面有几种自定义的进度条的样式,下面介绍几个. 进度条的有基本的四种样式: 默认风格的进度条: android:progressBarStyle 水平长型进度条: andro ...

  4. android 自定义progressbar 样式

    在res下创建drawable文件夹,新建文件drawable/progressbar_color.xml <layer-list xmlns:android="http://sche ...

  5. Android 自定义CheckBox 样式

    新建Android XML文件,类型选Drawable,根结点选selector,在这定义具体的样式. <?xml version="1.0" encoding=" ...

  6. android自定义TabWidget

    在做项目的时候,需要用到这个选项卡,刚开始看了系统的tabwidget,囧了,底边有黑线不说,还不美观,扒了好多的网页发现前辈做的能够满足自己的需求,将代码修改了下,就能用喽,伟人说过,站在前辈的肩膀 ...

  7. 转:android 自定义RadioButton样式

    http://gundumw100.iteye.com/blog/1146527  上面这种3选1的效果如何做呢?用代码写? 其实有更简单的办法,忘了RadioButton有什么特性了吗? 我就用Ra ...

  8. Android 自定义CheckBox样式

    1.首先在drawable文件夹中添加drawable文件checkbox_style.xml. <selector xmlns:android="http://schemas.and ...

  9. Android 自定义光标样式

    今天自定义光标,自己切图,不过怎么切都是很宽.不是一个很细的条.我用ps花了一个像素的直线,放上去还是不行.后来在网上找到方法,那就是用shape.不得不说,shape真的是太吊了. 给EditTex ...

随机推荐

  1. SQL SERVER 2008 R2 SP3 发布

    今晚上刚发现,微软很低调啊 下载地址:http://www.microsoft.com/zh-cn/download/details.aspx?id=44271 整合SP3的Express系列版本还没 ...

  2. Camel In Action 阅读笔记 第一章 认识Camel 1.1 Camel 介绍

    1.1 Camel 介绍 Camel 是一个为了您的项目集成变得高效有趣的集成框架,Camel 项目在2007年初开始的,相对来说它还比较年轻,但它已然是一个非常成熟的开源项目,它所使用的是Apach ...

  3. 连接SQLServer2005失败--[Microsoft][ODBC SQL Server Driver][DBNETLIB]一般性网络错误。请检查网络文档

    连接SQLServer2005失败,错误信息: 错误类型:Microsoft OLE DB Provider for ODBC Drivers (0x80004005)[Microsoft][ODBC ...

  4. poj 1581 A Contesting Decision

    题目大意:有四个题目,有某些队做题,写一个判断程序如:Stars 2 20 5 0 4 190 3 220Stars是队名,2是提交的次数,20是花费的时间,花费时间为0则说明题目提交错误,错误的忽略 ...

  5. 转】用Maven构建Mahout项目

    原博文出自于: http://blog.fens.me/hadoop-mahout-maven-eclipse/ 感谢! 用Maven构建Mahout项目 Hadoop家族系列文章,主要介绍Hadoo ...

  6. 详解Android定位

    相信很多的朋友都有在APP中实现定位的需求,今天我就再次超炒冷饭,为大家献上国内开发者常用到的三种定位方式.它们分别为GPS,百度和高德,惯例先简单介绍下定位的背景知识. 什么是GPS定位.基站定位和 ...

  7. 【131】如何讲好PPT

    1 列提纲2 写稿子3 背稿子4 演练5遍,用自己的话说出来,最好和稿子一样,但不强求一样,关键要理解5 不一定要做,但是做好了会有很大提高,讲的时候也会很NB:有时间可以再演练几遍,录出来看看哪里需 ...

  8. HDU 2516 取石子游戏(FIB博弈)

    取石子游戏 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submi ...

  9. Windows PE3.0制作方法(从Win7中提取制作)

    Windows PE3.0制作方法(从Win7中提取制作 在d:新建文件夹winpe,在winpe中新建sources.pe3和new文件夹,把附件中提供的工具imagex连文件夹一起放到winpe目 ...

  10. 最基本的Unix系统操作命令

    基本知识点: OSX 采用的Unix文件系统,所有文件都挂在跟目录 / 下面,所以不在要有Windows 下的盘符概念. 你在桌面上看到的硬盘都挂在 /Volumes 下. 比如接上个叫做 USBHD ...