FragmentTabHost with drawable icon

*爱你&永不变心* 提交于 2019-12-18 09:24:12

问题


I have implemented tabs using FragmentTabHost in support package, but the drawable icon is not shown?

How to show the drawable icon with FragmentTabHost?

mTabs = (FragmentTabHost)findViewById(android.R.id.tabhost);
mTabs.setup(this, getSupportFragmentManager(), R.id.realtabcontent);

mTabs.addTab(mTabs.newTabSpec("chapter").setIndicator("Chapter",getResources().
getDrawable(R.drawable.chapter1)), ContentFragment.class, null);

mTabs.addTab(mTabs.newTabSpec("section").setIndicator("section",getResources().
    getDrawable(R.drawable.favourite1)), SectionFragment.class, null);
mTabs.addTab(mTabs.newTabSpec("video").setIndicator("Video",getResources().
    getDrawable(R.drawable.video1)),VideoFragment.class, null);
mTabs.addTab(mTabs.newTabSpec("about").setIndicator("About",getResources().
    getDrawable(R.drawable.about1)),AboutFragment.class, null);

回答1:


I had the same problem. Apparently, setIndicator(label, icon) does not work correctly. As a workaround, I used setIndicator(view) and created a simple custom view in tab_indicator.xml. For each tab, set the title and icon.



来源:https://stackoverflow.com/questions/16720977/fragmenttabhost-with-drawable-icon

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