現在我只有一個簡單的標籤佈局與查看傳呼機一起工作。我想知道如何自定義我的標籤佈局,以便例如在我的應用程序中顯示一個功能,以顯示我的查看傳呼機中該片段的回收器視圖中的項目數。 感謝如何在我的標籤佈局中像Whatsapp一樣製作計數器?
0
A
回答
1
public View getTabView(Context context, int position) {
int[] unreadCount = {3, 1, 2};
View tab = LayoutInflater.from(context).inflate(R.layout.partial_custom_tab, null);
tabText = (TextView) tab.findViewById(R.id.tab_title);
counter = (View) tab.findViewById(R.id.tab_badge);
tabText.setText(mPages.get(position).title);
if (mPages.get(position).icon != null) {
counter.setVisibility(View.VISIBLE);
counter.setBackground(mPages.get(position).icon);
} else {
counter.setVisibility(View.GONE);
}
BadgeDrawable badge = new BadgeDrawable(getContext(),
getResources().getColor(R.color.colorAccent));
if (unreadCount[position] > 0) {
counter.setVisibility(View.VISIBLE);
badge.setCount(unreadCount[position]);
badge.mutate();
counter.setBackground(badge);
} else {
counter.setVisibility(View.GONE);
}
if (position == 0) {
tab.setSelected(true);
}
return tab;
}
0
你可以做這樣的事情:
LinearLaout tabone= (LinearLaout) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
TextView txtView= (TextView) tabone.findViewById(R.id.txtview);
txtView.setText("ONE");
TextView txtCount= (ImageView) tabone.findViewById(R.id.txtcount);
txtCount.setText("200")//Count
/*Also don't forgot to add background of count textview in xml according to your design.*/
tabLayout.getTabAt(0).setCustomView(tabone);
這就是它!
0
相關問題
- 1. 如何在swift中製作像下圖一樣的標籤
- 2. 如何改變我的聊天佈局輸出像whatsapp聊天佈局?
- 3. BIRT報表設計器 - 標籤佈局
- 4. 何時計算GWT標籤的佈局?
- 5. 如何更改標籤佈局中一個標籤的大小?
- 6. 佈局到WhatsApp的
- 7. 我的Activity如何將另一個圖標安裝到Android中的啓動器中?像WhatsApp一樣?
- 8. 標籤欄如WhatsApp
- 9. 如何製作這樣的容器佈局?
- 10. 在標籤佈局
- 11. 如何在標籤佈局中顯示我的所有組件?
- 12. 如何在黑莓手機中創建iphone像標籤佈局
- 13. Android佈局是否像HTML/CSS佈局一樣工作?
- 14. 如何使Android佈局像標記表一樣?
- 15. 如何使PSCmdlet布爾參數像標誌一樣工作?
- 16. 如何使用此佈局製作標籤? (見截圖)
- 17. 如何在Android中製作沒有標籤佈局的滑動視圖屏幕?
- 18. 的UIScrollView不自動佈局從一個標籤欄控制器
- 19. 像這樣的標籤佈局可以實現嗎?
- 20. 像Whatsapp一樣在一個標題下生成一個通知
- 21. 如何佈局列表項目以像行表一樣工作?
- 22. 如何在標籤視圖佈局
- 23. 我如何製作一個標籤系統像stackoverflow.com?
- 24. 如何在Android中製作像佈局的網格
- 25. 如何停止強制佈局D3中的標籤交互?
- 26. 我該如何製作這種佈局?
- 27. Retrofit RecyclerView不工作在標籤佈局
- 28. 如何在列布局和標籤佈局之間移動?
- 29. 如何在Android上製作這樣的佈局?
- 30. 我怎麼能得到這樣的標籤佈局
你可以在標籤標題中使用跨度嗎?如果是這樣,可能會在某個地方開始。 – stkent