美文网首页
android 模态对话框

android 模态对话框

作者: 冯玉鹏 | 来源:发表于2017-12-07 20:42 被阅读0次

    ```

    View view = LayoutInflater.from(this).inflate(R.layout.popwindow_show,null);

    AlertDialog dialog =newAlertDialog.Builder(this)

    .setView(view)

    .create();

    dialog.setCancelable(false);

    dialog.show();

    ```

    相关文章

      网友评论

          本文标题:android 模态对话框

          本文链接:https://www.haomeiwen.com/subject/gkzhpxtx.html