0

我对徽章的概念很陌生。在我的应用程序中,我想在选项卡上显示徽章。为此,我使用了 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();

输出:

在此处输入图像描述

4

2 回答 2

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);
于 2012-09-18T10:25:58.687 回答
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>

于 2014-06-04T14:08:05.750 回答