I have implemented tabs using FragmentTabHost in support package, but the drawable icon is not shown?
How to show the drawable icon with FragmentTabHost?
<
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.
setIndicator(label, icon)
setIndicator(view)
tab_indicator.xml