You will need to add a new 'LAMW [GUI] Android jForm', this will prompt to save/create a .pas file and it should add it to the uses clause of the project.lpr.
The issue you're probably running into is that you need to create/initialise the form during runtime before you show it, if you haven't already done this (even if your form is created/exists in your project), you can do this in the OnJNIPrompt event or when you click the button, you can create the form at that point, you can add something like below, then you can call Form2.show. As mentioned previously, make sure you set a background color on the second form, as it defaults to being transparent, you won't see it otherwise.
If (Form2 = nil) then
begin
gapp.CreateForm(TForm2, Form2);
Form2.Init();
end;
Then:
I personally initialise/create the form at startup and just show/hide the form when I need to, but it depends how often you need to use it I guess, I use it a lot in my project.