Hello, when my app starts in portrait mode is displayed correctly, but if i put the device in landscape mode and launch the app, something get wrong, the splash screen is not displayed and some text in buttons are not setted, why? i forced orientation with "SetScreenOrientation(1)", but the problem remains....
Sub GetOrientation As Int
Dim r As Reflector
r.Target = r.GetContext
r.Target = r.RunMethod2("getSystemService", "window", "java.lang.String")
r.Target = r.RunMethod("getDefaultDisplay")
Return r.RunMethod("getRotation")
End Sub