material design效果Dialog并修改颜色

1,引用包

compile 'com.android.support:appcompat-v7:23.4.0'

2,调用V7包下的AlertDialog

new AlertDialog.Builder(MainActivity.this).setTitle("单选框").setSingleChoiceItems(
                        new String[]{"Item1", "Item2"}, 0,
                        new DialogInterface.OnClickListener() {
                            public void onClick(DialogInterface dialog, int which) {
                                dialog.dismiss();
                            }
                        }).setNegativeButton("取消", null).show();

出来的效果是这样的:

material design效果Dialog并修改颜色_第1张图片

3,为在应用的主题添加以下代码


    

    

material design效果Dialog并修改颜色_第2张图片

参考:http://www.jianshu.com/p/fb671e11e455


你可能感兴趣的:(Android架构学习之路)