What's the height of the Android Toolbar? -
what height of android toolbar introduced in lollipop? it's quite simple question haven't found answer here except actionbar; has different height.
the toolbar (if not extended) has height of:
56dp(default)48dp(landscape)64dp(sw600dp; i.e. tablet)
the toolbar higher pre-lollipop actionbar; 48dp default, 40dp in landscape , 56dp in sw600dp.
and retrieve height of toolbar in xml, use
?android:attr/actionbarsize
or if you're using appcompat library this
?attr/actionbarsize
Comments
Post a Comment