1.制作4个9patch的tab样式,可参考android默认的资源

tab_unselected.9.png tab_selected.9.png tab_press.9.png tab_focus.9.png

这4个资源分别代表Tab的4种状态。

2.定义Tab的selector样式(就叫它tab_indicator.xml好了),将其放入drawable文件夹下,代码如下:

               1         <?        xml version="1.0" encoding="utf-8"        ?>         
2 < selector xmlns:android ="http://schemas.android.com/apk/res/android" >
3 <!-- Non focused states -->
4 < item android:state_focused ="false" android:state_selected ="false" android:state_pressed ="false" android:drawable ="@drawable/tab_unselected" />
5 < item android:state_focused ="false" android:state_selected ="true" android:state_pressed ="false" android:drawable ="@drawable/tab_selected" />
6 <!-- Focused states -->
7 < item android:state_focused ="true" android:state_selected ="false" android:state_pressed ="false" android:drawable ="@drawable/tab_focus" />
8 < item android:state_focused ="true" android:state_selected ="true" android:state_pressed ="false" android:drawable ="@drawable/tab_focus" />
9 <!-- Pressed -->
10 < item android:state_pressed ="true" android:drawable ="@drawable/tab_press" />
11 </ selector >

3.编写indicator的布局文件(不妨也叫tab_indicator.xml),将其放入layout文件夹下,代码如下:

               1         <?        xml version="1.0" encoding="utf-8"        ?>         
2 < RelativeLayout xmlns:android ="http://schemas.android.com/apk/res/android"
3 android:layout_width ="0dip"
4 android:layout_height ="64dip"
5 android:layout_weight ="1"
6 android:layout_marginLeft ="-3dip"
7 android:layout_marginRight ="-3dip"
8 android:orientation ="vertical"
9 android:background ="@drawable/tab_indicator" >
10 < ImageView android:id ="@+id/icon"
11 android:layout_width ="wrap_content"
12 android:layout_height ="wrap_content"
13 android:layout_centerHorizontal ="true"
14 />
15 < TextView android:id ="@+id/title"
16 android:layout_width ="wrap_content"
17 android:layout_height ="wrap_content"
18 android:layout_alignParentBottom ="true"
19 android:layout_centerHorizontal ="true"
20 style ="?android:attr/tabWidgetStyle" mce_style ="?android:attr/tabWidgetStyle"
21 />

4.接下来就是在TabActivity中使用我们自己编写的Tab样式了:

              1         // 首先获取TabWidget 
2 mTabHost = getTabHost();
3 LinearLayout ll = (LinearLayout)mTabHost.getChildAt(0);
4 TabWidget tw = (TabWidget)ll.getChildAt(0);

然后用类似如下代码创建TabSpec,就大功告成了。

              1         RelativeLayout tabIndicator1         =         (RelativeLayout) LayoutInflater.from(        this        ).inflate(R.layout.tab_indicator, tw,         false        ); 
2 TextView tvTab1 = (TextView)tabIndicator1.getChildAt( 1 );
3 tvTab1.setText( " tab1 " );
4 mTabHot = mTabHost.newTabSpec( " TAB_1 " )
5 .setIndicator(tabIndicator1)
6 .setContent(contentIntent);

更多相关文章

  1. android 手机管理软件 发布开源代码
  2. 实用代码3
  3. 如何将一个Activity设置成窗口的样式
  4. android通过USB的MTP模式下,禁止用户在根目录有任何操作(重命名 删
  5. Android使用代码实现关机/重启

随机推荐

  1. Valgrind —— Android使用摘要
  2. Android培训班(48)
  3. [新技术]新技术
  4. Android硬件加速相关知识点总结
  5. [代码分享] 乐淘Android客户端源码
  6. Android异步任务机制之AsycTask
  7. Android 一些网址记录
  8. 通过浏览器调用Android或iOS应用
  9. Android显示圆角图片,可指定图片某几个角
  10. Android UI学习 - Tab的学习和使用