Add Image or style to each tab

后端 未结 2 573
我寻月下人不归
我寻月下人不归 2021-01-07 14:06

i have app with many tabs, i want to add image or style to each tab , how please?

th = (TabHost) findViewById(R.id.tabhost_template_two_tabs);
th.setup();
//         


        
2条回答
  •  广开言路
    2021-01-07 14:12

    You can set the image to the tab as below :

    tabHost.newTabSpec("All").setIndicator(null,res.getDrawable(R.drawable.icon)).setContent(R.id.tab_template_two_tabs_all);
    

    Or to set the style try this:

     tabHost.newTabSpec("All").setIndicator(null,res.getDrawable(R.style.myStyle)).setContent(R.id.tab_template_two_tabs_all);
    

提交回复
热议问题