AlertDialog 使用总结

来源:互联网 发布:传奇盛世翅膀数据7到8 编辑:程序博客网 时间:2024/05/20 11:34

一、AlertDialog 标题和背景色的设置

1、更改AlertDialog的背景色
AlertDialog.Builder settingDialog = new AlertDialog.Builder(mContext);    settingDialog.setInverseBackgroundForced(true);
2、更改AlertDialog title 的样式
TextView title = new TextView(mContext);title.setText("Android");title.setGravity(Gravity.CENTER);title.setBackgroundColor(getResources().getColor(android.R.color.darker_gray));settingDialog.setCustomTitle(title);