android tab上显示数字(转)

好多人问怎么实现tab上有数字,其实很简单实现方法有很多,这里有布局实现吧,只是demo,希望大家明白原理res/drawable/shapecount.xml

 

Java代码   收藏代码
  1. "1.0" encoding="utf-8"?>  
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:shape="rectangle">  
  4.   "20dp"  />      
  5.   "#ff2233" />  
  6.   

 

 

Java代码   收藏代码
  1. res/layout/tabicon.xml  
  2.   
  3.     android:orientation="vertical"  
  4.     android:background="@null"  
  5.     android:id="@+id/rlayout"  
  6.     android:layout_width="wrap_content"  
  7.     android:layout_height="wrap_content" >  
  8.     
  9.             android:id="@+id/icon"  
  10.             android:src="@android:drawable/ic_menu_mylocation"   
  11.             android:layout_margin="0dp"  
  12.             android:layout_height="wrap_content"   
  13.             android:layout_width="wrap_content"/>  
  14.   
  15.     "wrap_content" android:layout_height="wrap_content"  
  16.         android:text="50" android:textSize="12dp" android:textStyle="bold"    
  17.         android:background="@drawable/shapecount"  
  18.         android:textColor="#FFFFFF"  
  19.         android:paddingLeft="3dp" android:paddingRight="3dp"  
  20.             android:layout_margin="0dp"  
  21.         android:layout_alignBottom="@+id/rlayout"  
  22.         android:id="@+id/txtCount" />  
  23.   
  24.  


     LayoutInflater inflater = LayoutInflater.from(this);
 View view = inflater.inflate(R.layout.tabicon, null);
final TextView txtCount = (TextView) view.findViewById(R.id.txtCount);

spec = tabHost.newTabSpec("artists").setIndicator(view).setContent(intent);
 






你可能感兴趣的:(android)