문제

Can we change the place of text and image in tabs?

Because images which i have used are slightly big in dimensions and hiding the title of my tabs.

Please help.

도움이 되었습니까?

해결책

For Changing Image and Text View in Tab Bar you need to write Custom Tab Bar. Check this link for Custom Tab Bar

Let me know if you have any difficulty in it. Thanks Venky.

다른 팁

You would need to create custom tabs, use the tutorial below for reference.

http://joshclemm.com/blog/?p=136

All you have to do is increase the height of your tabs by calling tabHost.getTabWidget().getChildAt(i).getLayoutParams().height

Eg. In your main class which extends TabActivity, implement this code in your into your TabHost :

TabHost tabHost;


       for (int i = 0; i < getTabWidget().getTabCount(); i++ ) {

        tabHost.getTabWidget().getChildAt(i).getLayoutParams().height = 100;
    }

Increase the height if it's not big enough for your custom image. Happy coding!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top