Android Instance-Multi-window switching
1. Picture one is the interface after the program runs.
2. Picture two is to click on the "non-modal display" interface.
3. Picture three is to click on the "Mold Honest Display" interface (prompt platform is not supported).
UnitUnit1;Interfaceusessystem.sysutils, System.types, System.uitypes, system.classes, System.variants, FMX. Types, FMX. Controls, FMX. Forms, FMX. Graphics, FMX. Dialogs, Fmx.stdctrls, FMX. controls.presentation;typeTForm1=class(tform) Button1:tbutton; Label1:tlabel; Button2:tbutton; procedureButton1Click (Sender:tobject); procedureButton2click (Sender:tobject); Private {Private Declarations} Public {Public Declarations} End;varForm1:tform1;ImplementationusesUnit2;{$R *.FMX}{$R *. NMXHDPIPH.FMX ANDROID}procedureTform1.button1click (sender:tobject);beginform2.show;//non-modal display form twoEnd;procedureTform1.button2click (sender:tobject);beginForm2.showmodal;//modal display form twoEnd;End.
Android Instance-multi-window toggle