在标签栏android上显示通知

时间:2011-03-08 14:35:15

标签: android

我正在开发一个Android应用程序,其中有一个tabbar是通知。我必须显示待该用户的待处理通知数量,我想显示待处理请求的数量将显示在图标上。

我有一个通知活动,显示待处理的通知数量,我需要将该计数放在tabbar中。该标签的图标是一个正方形&我想把数字放到那个方块,但是我无法做到这一点是否有任何notifiaction api给了我那个计数也放入任何视图组。

thnx任何帮助...............

3 个答案:

答案 0 :(得分:1)

另一种可能性,肯定是有效的(我试过): 使用TabSpec.setIndicator(View)。您可以为Tab-Header设置任何View。这应该允许您根据需要设置标题样式。

试试这个示例代码:

public class TabTest extends TabActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        TabHost tabHost = getTabHost(); // The activity TabHost
        TabHost.TabSpec spec; // Resusable TabSpec for each tab
        Intent intent; // Reusable Intent for each tab
        // Create an Intent to launch an Activity for the tab (to be reused)
        intent = new Intent().setClass(this, MyActivity.class);

        // Initialize a TabSpec for each tab and add it to the TabHost
        spec = tabHost
                .newTabSpec("artists").setIndicator(getLayoutInflater().inflate(R.layout.tablayout, null))
                .setContent(intent);
        tabHost.addTab(spec);
    }
}

并创建一个名为tablayout的布局。在这个布局中放置你喜欢的东西(我花了一个时钟进行快速演示)。此外,您还必须创建MyActivity,其中包含显示标签时应显示的内容。

截图:

Screenshot of Tab

答案 1 :(得分:1)

这是如何在标签中添加徽章

的示例

chat_tab.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="0dip" 
    android:layout_height="64dip"
    android:layout_weight="1" 
    android:layout_marginLeft="-3dip" 
    android:layout_marginRight="-3dip" 
    android:orientation="vertical" 
    android:background="@drawable/tab_indicator" >

    <ImageView
        android:id="@+id/chat_icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/chat_icon"
        android:layout_centerHorizontal="true"/>

    <TextView
        android:id="@+id/new_notifications" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/chat_icon"
        android:layout_toRightOf="@+id/chat_icon"
        android:layout_marginLeft="-8dp"
        android:layout_marginTop="0dp"
        android:paddingTop="2dp"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:paddingBottom="2dp"
        android:textSize="8sp"
        android:textStyle="bold"
        android:textColor="@android:color/primary_text_dark"
        android:background="@drawable/badge"
        android:visibility="gone"/>

    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/chat"
        style="@android:attr/tabWidgetStyle"
        android:textColor="@android:color/tab_indicator_text"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"/>


</RelativeLayout>

这是 badge.xml (通知背景的红色圆圈),TextView ID:new_notifications background

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="oval" >

    <stroke android:width="2dp" android:color="#FFFFFF" />

    <corners android:radius="10dp"/>

    <padding android:left="2dp" />

    <solid android:color="#ff2233"/>

</shape>

然后在代码中你可以简单地做

LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        View chatTab = inflater.inflate(R.layout.chat_tab, null);

        tvNewNotifications = (TextView) chatTab.findViewById(R.id.new_notifications);

        intent = new Intent().setClass(MainTab.this, Chat.class);
        tabSpec = tabHost
                .newTabSpec("chat")
                .setIndicator(chatTab)
                .setContent(intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));

正如你可以看到我的相对布局有一个背景@drawable/tab_indicator 标签indicator.xml 是框架的标准drawable选项卡,我从sdk获得,我建议你应该也可以从sdk中的api文件夹中获取它,因为你还需要从drawable文件夹中复制一些图像,你可以找到它 的 your_sdk_drive:\ SDK \平台\机器人-8

答案 2 :(得分:0)

覆盖TabWidgetdispatchDraw方法怎么样?您可以使用drawing-api将数字绘制到(已绘制的)标签页上。