Using Viewport Metadata
You can define properties of the viewport for your web page using the "viewport" property in an HTML<meta> tag (which must be placed in your document <head>). You can define multiple viewport properties in the <meta> tag's content attribute. For example, you can define the height and width of the viewport, the initial scale of the page, and the target screen density. Each viewport property in the content attribute must be separated by a comma.
For example, the following snippet from an HTML document specifies that the viewport width should exactly match the device screen width and that the ability to zoom should be disabled.
<head><title>Example</title><meta name="viewport" content="width=device-width, user-scalable=no"/></head>
How do I get viewport data into my EGL 9.1.1 App?
We are switching Android devices that have different screen widths and heights?
Is this handled better in RBD 9.5?
Gadberry