I am getting error while creating a Toast
Toast
Toast toast = Toast.makeText(this, text, duration);
I am getting cannot resolve ma
ma
Was having similar issue too but
getContext()
did the trick for me
// If message field is empty show a toast and alert the user if (TextUtils.isEmpty(message)) { Toast.makeText(getContext(),"Please Enter a message", Toast.LENGTH_SHORT).show(); return; }