Android中的AlertDialog遇到的错误

Posted 巫山老妖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android中的AlertDialog遇到的错误相关的知识,希望对你有一定的参考价值。

public void showAddIPCDialog() {
Log.i("ssssssssss","wwwwwwwwww");
LayoutInflater inflater = this.getActivity().getLayoutInflater();
Log.i("ssssssssssinflater",inflater+"");
//错误
// final View layout = inflater.inflate(R.layout.addipc, (ViewGroup) findViewById(R.id.addipc_dialog));//添加布局

//正确

final View layout = inflater.inflate(R.layout.addipc, null);//添加布局

Log.i("sssssssssslayout",layout+"");
EditText etName = (EditText) layout.findViewById(R.id.et_camera_name);
EditText edit = (EditText) layout.findViewById(R.id.sn);
EditText editps = (EditText) layout.findViewById(R.id.password);

new AlertDialog.Builder(this.getActivity()).setTitle("添加监控摄像头").setView(layout)
.setPositiveButton("确定", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface arg0, int arg1) {

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

//总结:复制需谨慎























以上是关于Android中的AlertDialog遇到的错误的主要内容,如果未能解决你的问题,请参考以下文章

VLC 遇到此媒体 Android 错误

Android - AlertDialog 位于任何活动之上,不依赖于特定活动

转载android AlertDialog

Android中的AlertDialog(警告对话框)

没有AlertDialog的android中的多选微调器

Android:如何在 PIP 模式下显示 AlertDialog?