Tabs without icon

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

    You can set a fixed height of the tabwidged.

    In the Code:

    tabHost.getTabWidget().getChildAt(0).getLayoutParams().height=n;
    

    Or in the XML: ..

    android:layout_height="n"
    

    .. (with android:gravity you can affect where ur tabwidget gets cut)

提交回复
热议问题