You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
README – Lab 2
-Group Members:
----------------------------
|Name----------|Student# |
|Gabriel Beh | |
|Manali Bisht | |
|Erim Lee | |
|Vandana Suman | 220094124 |
----------------------------
-Division of work:
* Gabriel Beh
Implemented Part 6, 7:
Styling and Orientation Support:
-Apply basic styling: padding, fonts, colors
-Ensure the UI is usable in both portrait and landscape modes
Error Handling: Gracefully handle cases where data might be missing (e.g., null title or image)
* Manali Bisht
Implemented Part 1, 2, 3:
Create a List UI using RecyclerView: Implement a scrollable list of 15 hardcoded items using a RecyclerView with the ViewHolder pattern.
Build a Data Model: Create a simple Java class (e.g., Item) with at least the following fields:
-String title
-int imageResId
-String description
Design Item Layout: Each list item should display:
-A thumbnail image
-The item’s title
-A brief summary or short description
* Erim Lee
Implemented Part 5:
Create a Detail Screen: DetailActivity should display:
-Full title
-A large image
-Detailed description
* Vandana Suman
Implemented Part 4:
Implement Navigation: When a list item is clicked
-Launch a new DetailActivity using an explicit Intent
-Pass the relevant item data (title, imageResId, and description) to the new activity