如何在Android中更改自定义对话框标题栏的高度
作者:互联网
在我的android应用中,我有一个自定义对话框.我想设置对话框标题栏的高度.我的风格如下:
<resources>
<style name="customDialogStyle" parent="android:Theme.Dialog">
<item name="android:background">#04a9ee</item>
<item name="android:height">5dp</item>
</style>
</resources>
但是标题栏上的“高度”属性无效.那么,如何更改自定义对话框标题栏的高度?
解决方法:
是的,我只是检查一下,您想使用“ android:layout_height”其他高度也可以使用:“ android:minHeight”
标签:android,titlebar 来源: https://codeday.me/bug/20191102/1988601.html