I am trying to add a white triangle to the bottom of tabhost to indicated the open tab like this:
I have the white triangle png. Just wondering how I can style tabhost to add an image below the text for active tabs
This is the background resource I am setting to the tabhost.
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/tabselectedcolor" android:state_selected="true" />
<item android:drawable="@drawable/tabunselcolor" />
</selector>
Thank you very much.