Как отобразить количество полученных сообщений на вкладке ViewPager с PagerSlidingTabStrip android?

Я создаю приложение чата. И в моем приложении я использую View Pager с PagerSlidingTabStrip. ниже снимок.

Теперь я хочу показывать числовой счетчик на вкладке Недавние, когда получаю новое сообщение от пользователя.
,

Пожалуйста, помогите мне, я застрял в этом вопросе из многих дней.

Спасибо

1 ответ

Я сделал это по индивидуальному заказу. Отредактируйте файл PagerSlidingTabStrip.java, как показано ниже.

private void addIconTab(final int position, int resId) {
LayoutInflater inflater = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.image_tab, null);
ImageButton tab = (ImageButton)view.findViewById(R.id.img_icon);
tab.setImageResource(resId);
addTab(position, view);

}

Если вы используете текстовую вкладку, измените метод addTextTab().

И layout.xml

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <ImageButton
        android:id="@+id/img_icon"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:contentDescription="@null"
        android:layout_centerInParent="true"
        android:background="@null"
        android:clickable="false" />

    <TextView
        android:id="@+id/tv_count"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="7dp"
        android:background="@drawable/bg_number"
        android:gravity="center"
        android:text="33" />

</RelativeLayout>

Другие вопросы по тегам