I want to launch the POPUP screen on the GeneXus 16 SmartDevicePanel on a full screen.

Asked 2 years ago, Updated 2 years ago, 35 views

We are developing an Android barcode scanner with GeneXus16U11.
Popup is calling another SmartDevicePanel from the originating SmartDevicePanel.

CallTo_SDP.CallOptions.Type=CallType.Popup
Called_SDP.CallOptions.TargetSize=CallTargetSize.Large
Called_SDP.Call()

The call destination screen is displayed as small as 2-3 dips, up, down, left, right, and right.
Is it not possible to display it in the maximization state?

android

2022-09-30 18:17

1 Answers

Called_SDP.CallOptions.TargetSize=CallTargetSize.Large

Why don't you specify the size of the part as shown below?

Destination_SDP.CallOptions.TargetWidth=!'100%'
Called_SDP.CallOptions.TargetHeight=!'100%'


2022-09-30 18:17

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.