question archive Create an Android Application that allows the nurses to keep track of various tests performed daily on patients in a hospital
Subject:Computer SciencePrice: Bought3
Create an Android Application that allows the nurses to keep track of various tests performed daily on patients in a hospital. Your application could be used by nurses in hospitals or testing centers. Use Room persistence library and MVVM pattern (as shown in class examples) to create a nd manipulate the application's database. Create the following entities:
Patient
Test
Nurse
patientId
firstname
lastname
department
nurseId
room
testId
patientId
nurseId
BPL
BPH
temperature
nurseId
firstname
lastname
department
password
Add more fields to Test entity, to describe other medical tests. Your application should contain the following activities:
1. The main activity that handles the navigation.
2. The login activity will allow the nurse to login. Use nurseId as user name for the nurse.
3. The patient activity will allow the nurse to enter/view patient information.
4. The test activity will allow a nurse to enter test data for a patient.
5. The view test info activity will allow the nurses to view test information for a given patient.
6. The update info activity will allow the nurse to update/display patient information.
Use Shared Preferences to store nurseId after successful login. Provide a friendly and easy to navigate UI. Use images and image buttons.