Androids TabLayout 的默认高度是多少
What is the default height on Androids TabLayout
看起来应该很容易找到,但比我想象的要难。
DIP 中 TabLayout 的默认高度是多少?
Material Design guidelines 声明当您有文本 或 图像时此高度等于 48dp,当您有图像 和 时此高度等于 72dp文字.
它的高度是"?attr/tabIndicatorHeight"
例如
您可以在 xml 文件中将此值用于另一个视图,例如:
android:layout_marginBottom="?attr/tabIndicatorHeight"
它在所有设备上看起来都不错。
看起来应该很容易找到,但比我想象的要难。 DIP 中 TabLayout 的默认高度是多少?
Material Design guidelines 声明当您有文本 或 图像时此高度等于 48dp,当您有图像 和 时此高度等于 72dp文字.
它的高度是"?attr/tabIndicatorHeight"
例如 您可以在 xml 文件中将此值用于另一个视图,例如:
android:layout_marginBottom="?attr/tabIndicatorHeight"
它在所有设备上看起来都不错。