The goal of this assignment is to create a database with two tables, a recipe table and an ingredients table.
The Recipe Table should have a
RecipeID which is an autonumber
RecipeName which is String
RecipeDescription also String
The Ingredient Table should have
RecipeID as a foreign key
IngredientName as String
The structure is essentially identical to the CD/Tracks structure
The app should work like the example. the first activity should list the available recipes. When one is clicked on a second activity that shows all the ingredients should open. Also on the first activity there should be a button or a clickable text that takes you to an activity to insert a new recipe.
For an extra challenge you can try to add edit and delete buttons on the detail activity to further manage the records.
No comments:
Post a Comment