android – 用户可以选择输入详细信息或取消的对话框或表单

前端之家收集整理的这篇文章主要介绍了android – 用户可以选择输入详细信息或取消的对话框或表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序中,我希望用户可以看到一个对话框或表单,允许用户输入他们的姓名和电话号码.

我看不到任何可供用户在弹出窗体或对话框中输入详细信息的内容.有没有简单的方法来做到这一点.

谢谢

解决方法

您还可以使用AlertDialog.Builder将布局粘贴到警报对话框中,如下所示:
//Preparing views
    LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
    View layout = inflater.inflate(R.layout.dialog_layout,(ViewGroup) findViewById(R.id.layout_root));
//layout_root should be the name of the "top-level" layout node in the dialog_layout.xml file.
    final EditText nameBox = (EditText) layout.findViewById(R.id.name_Box);
    final EditText phoneBox = (EditText) layout.findViewById(R.id.phone_Box);

    //Building dialog
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setView(layout);
    builder.setPositiveButton("Save",new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog,int which) {
            dialog.dismiss();
            //save info where you want it
        }
    });
    builder.setNegativeButton("Cancel",int which) {
            dialog.dismiss();
        }
    });
    AlertDialog dialog = builder.create();
原文链接:https://www.f2er.com/android/315873.html

猜你在找的Android相关文章