My code is:
public static void ToastMemoryShort (Context context) { CharSequence text = getString(R.string.toast_memoryshort); //error here Toast.mak
You should change
CharSequence text = getString(R.string.toast_memoryshort); //error here
for:
CharSequence text = context.getString(R.string.toast_memoryshort);
The getString function is implemented in Context#getString(int)
getString