Simple eCommerce Application
Budget: $10 – $30 CAD
Starting from a home screen with a logo, when a user presses a button, they should be taken to a list
of products displayed in card form. The list should be created from some collection of data like an
ArrayList. You’ll need to combine the list with a RecyclerView to create a CardView for each piece of
data. When the user clicks on a card, they’re taken to another screen which contains the full
information about the product they clicked as well as a button to purchase it. Finally they’re taken to a
final screen with a check-out form.
Here are the basic requirements of the app:
1. MainActivity containing a logo and a button to move to the next screen
2. ProductActivity containing a RecyclerView
3. row_layout containing a CardView with an ImageView and some TextViews
4. DetailActivity which displays the full details of a particular item when clicked
5. CheckoutActivity which contains a form used to purchase the good
6. A Java class file for your item eg, a Drink object if you are making a restaurant
7. A collection (for example, 8 different drinks), each with a photo and other details
8. Your design must be responsive, have good colours and fonts
of products displayed in card form. The list should be created from some collection of data like an
ArrayList. You’ll need to combine the list with a RecyclerView to create a CardView for each piece of
data. When the user clicks on a card, they’re taken to another screen which contains the full
information about the product they clicked as well as a button to purchase it. Finally they’re taken to a
final screen with a check-out form.
Here are the basic requirements of the app:
1. MainActivity containing a logo and a button to move to the next screen
2. ProductActivity containing a RecyclerView
3. row_layout containing a CardView with an ImageView and some TextViews
4. DetailActivity which displays the full details of a particular item when clicked
5. CheckoutActivity which contains a form used to purchase the good
6. A Java class file for your item eg, a Drink object if you are making a restaurant
7. A collection (for example, 8 different drinks), each with a photo and other details
8. Your design must be responsive, have good colours and fonts