android项目实战之实现弹框页面自定义

引言

项目需求弹框AlertDialog界面实现自定义

实现

1. 自定义xml 



    

2. Fragement实现
new AlertDialog.Builder(mActivity)
                        .setCancelable(true)
                        .setTitle("选择照片来源")
                        .setView(R.layout.custom_dialog_layout)
                        .setAdapter(simpleAdapter, new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int which) {
                                Toast.makeText(getActivity() , "点击了第"+which+"项",Toast.LENGTH_SHORT).show();

                            }
                        })
                        .setNegativeButton("取消" , null)
                        .create()
                        .show();

欢迎点赞、收藏、转发、评论。

你可能感兴趣的:(android,gitee)