Cannot resolve maketext() method of Toast

后端 未结 18 2614
旧时难觅i
旧时难觅i 2021-02-07 02:02

I am getting error while creating a Toast

Toast toast = Toast.makeText(this, text, duration);

I am getting cannot resolve ma

18条回答
  •  轮回少年
    2021-02-07 02:33

    Make sure that you type: Toast toast = Toast.makeText(this, text, duration);

    Not: Toast toast = new Toast.makeText(this, text, duration);

提交回复
热议问题