I have the following code that currently starts another activity:
Intent intent = new Intent(FoodMenuActivity.this, FoodItemActivity.class);
startActivity(intent);
Now I want to be able to send some data with to my FoodItemActivityClass. Either some string variables or an object that i have made. How would i go about doing this?