What's the height of the Android Toolbar?

后端 未结 2 423
盖世英雄少女心
盖世英雄少女心 2020-12-08 04:27

What is the height of the Android Toolbar introduced in Lollipop? It\'s a quite simple question but I haven\'t found an answer here except for the ActionB

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-08 05:07

    Call this method to get the value programmatically:

    public int getToolBarHeight() {
        int[] attrs = new int[] {R.attr.actionBarSize};
        TypedArray ta = getContext().obtainStyledAttributes(attrs);
        int toolBarHeight = ta.getDimensionPixelSize(0, -1);
        ta.recycle();
        return toolBarHeight;
    }
    

提交回复
热议问题