Tabs without icon

前端 未结 5 663
悲&欢浪女
悲&欢浪女 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:16

     TabSpec laboratorySpec = tabHost.newTabSpec("Laboratory");
     laboratorySpec.setIndicator("Laboratory");
     Intent laboratoryIntent = new Intent(this, LaboratoryActivity.class);
     laboratorySpec.setContent(laboratoryIntent);
    

    worked for me

提交回复
热议问题