
Please help me code this out in Java
In Android, you are being asked to create 2 views and link them together with a button. 1. The first view is a login page. You should include (at the very least) 2 input boxes for a person to input their username and password and a button to submit the text (i.e., attempt to login with the username and password credentials). Please note, you do NOT have to actually perform the username and password authentication/check at this time (so, no need to actually look at or check what was input into the username and password text boxes, if anything was input at all). You may be as creative as you'd like and include as much on the login page as you wish (you can include graphics, labels, logos, etc.). You will need to make an activity (it can be MainActivity) to load/show the view. 2. The second view may be any "landing" page you wish. It can be a home screen, a profile page, a browsing page, etc. You do not need to process anything for the second view, only create it. Just like the login page, you may be as creative as you'd like and include as much on the page as you wish. You will need to make a separate activity to load/show this second view. 3. You need to link the two activities (i.e., views) together. Make it so that when the login button is pressed in the login view/activity, the second view/activity is displayed. For a tutorial on how to approach this lab, please check out the "Activities and Views" recording in Blackboard, under "Project" -> "Project Implementation". Note, do not forget to add your activities to the AndroidManifest. Also note, you will be using this lab as the basis for your Lab 4 (so make sure to get it done sooner rather than later).