public void showToast(View view) {
Toast toast = new Toast.makeText(this, R.string.toast_message, Toast.LENGTH_SHORT);
toast.show();
}
error: cannot find symbol
Toast toast = new Toast.makeText(this, R.string.toast_message, Toast.LENGTH_SHORT);
^
symbol: class makeText
location: class Toast
As far as I can tell everything looks right, but for some reason I still keep getting this error.