I am new in android development. I am trying to show Toast in fragment using following code which i got from other sites:
Toast.makeText(this, "count is " + count, Toast.LENGTH_SHORT).show();
But I am getting an issue in the first parameter. Can anyone help?