我正在使用这样的 AlertDialog.Builder:
ContextThemeWrapper cw = new ContextThemeWrapper(context, R.style.AlertDialogTheme);
AlertDialog.Builder builder = new AlertDialog.Builder(cw);
这是我自定义的 AlertDialogTheme 样式:
<style name="AlertDialogTheme" parent="@android:Theme.Dialog">
<item name="android:textSize">15sp</item>
<item name="android:windowTitleStyle">@style/custom_style</item>
</style>
该textSize
属性适用于我放入构建器的项目列表builder.setItems()
,但它不适用于标题,因此我尝试覆盖该windowTitleStyle
属性,但它不起作用。
甚至有可能还是我做错了什么?