Question: This is the only Information provided. Project Set-up: 1. Create a new Android project with an empty activity 2. Open MainActivity.java 3. Create a new

This is the only Information provided.
Project Set-up: 1. Create a new Android project with an empty activity 2. Open MainActivity.java 3. Create a new Abstract Java Class called Person 4. Create a new Java Class called Student which inherits from the Person class Person Class: 5. bpen Person.java 6. Define the following encapsulated member variables: an integer age, a String first name, a String last_name 7. Add getters and setters for every variable 8. Create a method fullName which returns a String containing the concatenated first name and last name of the object Student Class: 9. Open Student.java 10. Define an encapsulated member variable: an integer studenti 11. Add a getter/setter for studenti 12. Create a constructor Student(int age, String first name, String last name, int studentID) and use Mthis to initialize each of the member variables MainActivity.java 13. Open MainActivity.java 14. Create a Student object using the constructor 15. Use the Log function to display the fullName and studentin of the Student 16. Show the results to your professor
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
