Hi Everyone,
I'm trying out the PoneSensorsExtra library and tried to display the phone orientation. Can you look at my code and let me know what I'm missing? It compiles but only displays random text on the phone screen.
Thanks.
I'm trying out the PoneSensorsExtra library and tried to display the phone orientation. Can you look at my code and let me know what I'm missing? It compiles but only displays random text on the phone screen.
Thanks.
B4X:
#Region Project Attributes
#ApplicationLabel: Compass Heading
#VersionCode: 1
#VersionName:
'SupportedOrientations possible values: unspecified, landscape or portrait.
#SupportedOrientations: unspecified
#CanInstallToExternalStorage: False
#End Region
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Private LabelCompassHeading As Label
Private sensors As PhoneSensorsExtra
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("Main")
End Sub
Sub Activity_Resume
sensors.Initialize(sensors.TYPE_ORIENTATION)
sensors.StartListening("Heading")
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub Heading_sensorchanged (values() As Float)
LabelCompassHeading.Text = values
End Sub