Question
Android Studio Programming Any help at all with this would be greatly appreciated. Create a Favorite Person app! This should be a list The app
Android Studio Programming
Any help at all with this would be greatly appreciated.
Create a Favorite Person app!
This should be a list
The app should be using a Model - View - Controller architecture.
The model layer of the app should have a Person class and a PersonList class. The fields for Person should be a small image of the favorite person (use Google images if needed), the person's name and the person's phone number. You should create a singleton style PersonList class that has an array of People.
Your app should consist of a PersonListActivity, a PersonListFragment, a Person class and a PersonList class. it is recommend using the abstract class SingleFragmentActivity.
The user should be greeted with a list of FavoritePeople.
You should show at least 10 Favorite People.
The PersonListFragment should inherit from Fragment and use a ViewHolder.
Your ListItems should use a custom layout you create that displays an ImageView (for the person's image) a TextView (for the person's name) and a TextView (for the person's phone number).
There should be at least 10 items in your FavoritePeopleList app. The PersonList activity that houses the PersonListFragment should launch when the app launches.
When you tap on a person in your list a Toast with the person's name and phone number should appear.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started