有没有办法改变AlertDialog的标题背景颜色(android.support.v7.app.AlertDialog)?? 目前我的主题是
- @style/AppCompatAlertDialogStyle
我这样得到它,
我怎么能让它看起来像这样
运用
给
关于如何实现这一点的任何想法?
您可以像这样设置自定义标题
LayoutInflater inflater = this.getLayoutInflater(); View titleView = inflater.inflate(R.layout.custom_title, null); new AlertDialog.Builder(SubCategoryActivity.this) .setCustomTitle(titleView);
在custom_title布局中,您可以像这样创建自定义标题