// In Button onClick
Toast.makeText(getApplicationContext(),"Button was pressed",Toast.LENGTH_SHORT).show();
// Using Strings.xml reference
Toast.makeText(getApplicationContext(), R.string.abc ,Toast.LENGTH_SHORT).show();
// Using a Function call
private void toaster(String abc) // Inside onClickListener
{
Toast toast= Toast.makeText(getApplicationContext(),
abc , Toast.LENGTH_SHORT);
toast.setGravity(Gravity.TOP| Gravity.CENTER, 0, 230);
toast.show();
}
toaster("Display this text");