私はTabLayout
とViewPager
を持っています。Androidのカスタムビューから文字列を取り除くにはどうすればいいですか? (TabLayout)
私が欲しい常にスペース...そう、それは任意の解像度
そして、あなたは新しいメッセージを受信したとき、タブがで更新されるために動作します白い円からテキスト(文字列CONVER ...)へ新しいメッセージの量:(画像を参照)
if(total_count == 0){
this.tabLayout.getTabAt(1).setText(getString(R.string.str_chat));
} else if(total_count > 0) {
// if you have more than 0 messages then, reduce to Conver...
this.tabLayout.getTabAt(1).setText(getString(R.string.str_chat_reduced));
}
のstrings.xml
<string name="str_chat">CONVERSAS</string>
<string name="str_chat_reduced">CONVER...</string>
tab.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:showIn="@layout/app_bar_home"
tools:context="com.yvone.homer.HomeActivity"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tabLayout"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
style="@style/MyCustomTabLayout" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="3">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="right|center_vertical"
android:paddingRight="5dp">
<com.yvone.homer.customview.CustomFontView
android:layout_width="25dp"
android:layout_height="25dp"
android:textAppearance="?android:attr/textAppearance"
android:text=""
android:id="@+id/txtMatchBadge"
android:background="@drawable/bg_white_badge"
android:gravity="center"
android:textColor="@color/red_dark"
android:visibility="invisible" />
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="right|center_vertical"
android:paddingRight="5dp">
<com.yvone.homer.customview.CustomFontView
android:layout_width="25dp"
android:layout_height="25dp"
android:textAppearance="?android:attr/textAppearance"
android:text=""
android:id="@+id/txtChatBadge"
android:background="@drawable/bg_white_badge"
android:gravity="center"
android:textColor="@color/red_dark"
android:visibility="invisible" />
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="right|center_vertical"
android:paddingRight="5dp"/>
</LinearLayout>
</FrameLayout>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v4.view.ViewPager>
</LinearLayout>