I am getting error while creating a Toast
Toast
Toast toast = Toast.makeText(this, text, duration);
I am getting cannot resolve ma
ma
First add
import android.widget.Toast;
statement if you did not already and then
Toast.makeText(YourActvityName.this, "Your Text", Toast.LENGTH_SHORT).show();