如何在标签中设置徽章位置

时间:2012-09-17 07:44:19

标签: android badge

我是徽章概念的新手。在我的应用程序中,我想在选项卡上显示徽章。为此,我使用了android-viewbadger.jar文件。它工作正常但位置属性不受影响。如何设置位置。如果您需要更多信息,请告诉我。

TabWidget tabs = (TabWidget) findViewById(android.R.id.tabs);       
DH_Constant.badgeView = new BadgeView(this, tabs, 2);

// it's working fine

badge1.setBadgePosition(BadgeView.POSITION_CENTER);

// But I Supposed to set it as position to top_left or top_right then it still shows as bottom_left and bottom_right

badge1.setBadgePosition(BadgeView.POSITION_TOP_RIGHT);

DH_Constant.badgeView.setText(DH_Constant.MessagesCount_obj.count); 
DH_Constant.badgeView.show();

输出:

enter image description here

2 个答案:

答案 0 :(得分:3)

默认情况下,它的位置为TOP_RIGHT。如果你想要任何其他职位,你必须设置它。 例如 对于top_left使用:

badge1.setBadgePosition(BadgeView.POSITION_TOP_LEFT);

中心使用:

badge1.setBadgePosition(BadgeView.POSITION_CENTER);

对于bottom_left使用:

badge1.setBadgePosition(BadgeView.POSITION_BOTTOM_LEFT);

对于bottom_right使用:

badge1.setBadgePosition(BadgeView.POSITION_BOTTOM_RIGHT);

答案 1 :(得分:0)

要获得徽章位置以显示在标签的上角,您需要将标签布局的根目录设置为FrameLayout,如下所示:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout 
    android:id="@+id/tabsLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/tabs_background"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="10dip" >

    <ImageView
        android:id="@+id/tabsIcon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@string/tab_icon"
        android:duplicateParentState="true" />

    <TextView
        android:id="@+id/tabsText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/tabs_text"
        android:textSize="10dip"
        android:textStyle="bold" />

</LinearLayout>