How to add images as a tab indicator in android tab host?

落爺英雄遲暮 提交于 2019-12-04 19:46:01

Add images which you want to use in the tabs in the draw-able folder and get through this way.

tab1.setIndicator("",getResources().getDrawable(R.drawable.tab1));
tab2.setIndicator("",getResources().getDrawable(R.drawable.tab2));
tab3.setIndicator("",getResources().getDrawable(R.drawable.tab3));
Akash Moradiya

try this may help you,

  MyTab.setIndicator("", getResources().getDrawable(R.drawable.tabicon));
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!