Tabs without icon

前端 未结 5 661
悲&欢浪女
悲&欢浪女 2020-12-18 22:39

I\'m having a look at the \"Tab Layout\" tutorial which is perfectly clear and my question is very simple : is it possible to create tabs with no icon, just a single title?<

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-18 23:05

    is it possible to create tabs with no icon, just a single title?

    Yes. If you are doing something like:

    spec = tabHost.newTabSpec("tab_name").setIndicator("Some tab",
                          res.getDrawable(R.drawable.ic_tab_artists))
                      .setContent(intent);
    

    Change it to:

    spec = tabHost.newTabSpec("tab_name").setIndicator("Some tab").setContent(intent);
    

提交回复
热议问题