How to reduce the tab bar height and display in bottom

前端 未结 8 717
长情又很酷
长情又很酷 2021-02-02 04:42

can anybody tell how to reduce the height of tab bar and display tab bar in bottom

Thanks

8条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-02 05:14

    Note that you have to change the height of each tab. For two tabs:

    @Override
    public void onCreate(Bundle savedInstanceState) {
        ... // other code
        final int height = 45;
        mTabHost.getTabWidget().getChildAt(0).getLayoutParams().height = height;
        mTabHost.getTabWidget().getChildAt(1).getLayoutParams().height = height;
    }
    

提交回复
热议问题