I am getting error while creating a Toast
Toast
Toast toast = Toast.makeText(this, text, duration);
I am getting cannot resolve ma
ma
I have faced similar problem in android studio, I resolve this issue by using getActivity() instead of this in the fragment
getActivity()
this
Toast.makeText(getActivity(), "Your Text", Toast.LENGTH_SHORT).show();