美文网首页
AlertDialog

AlertDialog

作者: moosoo | 来源:发表于2016-12-03 11:39 被阅读26次

    今天在写AlertDialog的时候一直各种报错,记录一下几个错误原因:
    1、导入包import android.app.AlertDialog,不知道为什么eclipse不能自动导入也没有导入选项;
    2、new AlertDialog.Builder(MainActivity.this)
    .setTitle(item)
    .setMessage("确定删除吗?")
    .setPositiveButton("是", null)
    .setNegativeButton("否", null)
    .show();
    这句话new AlertDialog.Builder(MainActivity.this) 写错this、null、或者self都不行。

    相关文章

      网友评论

          本文标题:AlertDialog

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