在Android中像iPhone一样绘制数字徽章

时间:2011-05-18 12:43:37

标签: android android-tabhost

a busy cat

我想在“聊天”标签上绘制上图中所示的数字徽章。该号码标记显示聊天中新未读邮件的数量。那么我该如何绘制这种自定义数字徽章呢? Android SDK中是否有任何内置API?提前致谢。

3 个答案:

答案 0 :(得分:15)

查看我的小部件/ app的答案here

您可以使用shapecount.xml

<强> RES /布局/ tabicon.xml

<RelativeLayout
    android:orientation="vertical"
    android:background="@null"
    android:id="@+id/rlayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >
    <ImageView 
            android:id="@+id/icon"
            android:src="@android:drawable/ic_menu_mylocation" <!-- Just for test -->
            android:layout_margin="0dp"
            android:layout_height="wrap_content" 
            android:layout_width="wrap_content"/>

    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:text="50" android:textSize="12dp" android:textStyle="bold"  
        android:background="@drawable/shapecount"
        android:textColor="#FFFFFF"
        android:paddingLeft="3dp" android:paddingRight="3dp"
            android:layout_margin="0dp"
        android:layout_alignBottom="@+id/rlayout"
        android:id="@+id/txtCount" />

</RelativeLayout>

创建标签时:

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);

现在,您可以使用txtCount更新标签图标中的数字。请参阅我在上面指出的帖子,以获取TimerTask的一个示例来测试它。

您还必须按照自己的意愿安排布局

答案 1 :(得分:0)

您可以使用FrameLayout实现此目的:Common Layout Objects

答案 2 :(得分:0)

有一个方便的library来轻松实现这一目标。只需一个jar文件即可添加到您的项目中。