Layout variants are valid for both, the emulator and for devices.
Best regards.
Select screensize
Case > 10"
If orientation = landscape Then
Activity.LoadLayout("screen1largeland")
Else
Activity.LoadLayout("screen1largeport")
End If
Case > 7"
If orientation = landscape Then
Activity.LoadLayout("screen1lmediumland")
Else
Activity.LoadLayout("screen1mediumport")
End If
Case Else
If orientation = landscape Then
Activity.LoadLayout("screen1smallland")
Else
Activity.LoadLayout("screen1smallport")
End If
End Select