I have a TabActivity with two tabs showing two lists. I used tabHost.getTabWidget().getChildCount() to change the tab indicator dynamically. But while starting the application getChildCount returns 1 instead of two.
please help me..
I'm attaching my code here..
@Override
public void onTabChanged( String arg0 )
{
if ( LIST1_TAB_TAG == tabHost.getCurrentTabTag() )
{
ImageView iv = (ImageView)tabHost.getTabWidget().getChildAt(0).findViewById(android.R.id.icon);
iv.setImageDrawable(res.getDrawable(R.drawable.rupees));
Log.v( "check", "onTabChanged :: ChildCount == " + tabHost.getTabWidget().getChildCount() );
}
Try using
getTabWidget().getTabCount()
andgetTabWidget().getChildTabViewAt(0)
.