Hallo,
ich will mir eine kleine App für eine BTM222 - Relaiskarte
schreiben. Doch schon beim bloßen Erstellen der GUI
wird meine App sofort geschlossen.
Ist ja bis jetzt nicht viel :
Die App schließt sich beim Ausführen ohne Kommentar.
Dachte schon, daß meinem Smartphone die Puste
ausgeht und deshalb habe ich alles Unnötige geschlossen.
Aber am Speicher scheint es nicht zu liegen.
Fehler kommt leider auch keiner.
Woran könnte das liegen ?
ich will mir eine kleine App für eine BTM222 - Relaiskarte
schreiben. Doch schon beim bloßen Erstellen der GUI
wird meine App sofort geschlossen.
Ist ja bis jetzt nicht viel :
B4X:
#Region Project Attributes
#ApplicationLabel: BTM222 Relaiskarte
#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.
Dim Serial1 As Serial
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.
Dim ch1, ch2, ch3, ch4, ch5, ch6 As CheckBox
Dim btn1, btn2, btn3 As Button
Dim ASS As AsyncStreams
Dim data As Byte
Dim msg As String
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("Layout1")
'If FirstTime Then
Serial1.Initialize("Serial1")
btn1.Initialize("btn1")
btn2.Initialize("btn2")
btn3.Initialize("btn3")
btn1.Text = "AN"
btn2.Text = "AUS"
btn3.Text = "ENDE"
ch1.Initialize("ch1")
ch2.Initialize("ch2")
ch3.Initialize("ch3")
ch4.Initialize("ch4")
ch5.Initialize("ch5")
ch6.Initialize("ch6")
ch1.Text = "RELAIS 1"
ch2.Text = "RELAIS 2"
ch3.Text = "RELAIS 3"
ch4.Text = "RELAIS 4"
ch5.Text = "RELAIS 5"
ch6.Text = "RELAIS 6"
Activity.AddView(btn1, 10dip, 20dip, 60dip, 40dip)
Activity.AddView(btn2, 10dip, 80dip, 60dip, 40dip)
Activity.AddView(btn3, 10dip, 140dip, 60dip, 40dip)
Activity.AddView(ch1, 100dip, 20dip, 80dip, 40dip)
Activity.AddView(ch2, 100dip, 80dip, 80dip, 40dip)
Activity.AddView(ch3, 100dip, 140dip,80dip, 40dip)
Activity.AddView(ch4, 100dip, 200dip,80dip, 40dip)
Activity.AddView(ch5, 100dip, 260dip,80dip, 40dip)
Activity.AddView(ch6, 100dip, 320dip,80dip, 40dip)
ASS.Initialize(Serial1.InputStream, Serial1.OutputStream, "BT")
'End If
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub btn1_Click
End Sub
Sub btn2_Click
End Sub
Sub btn3_Click
Activity.Finish
End Sub
Die App schließt sich beim Ausführen ohne Kommentar.
Dachte schon, daß meinem Smartphone die Puste
ausgeht und deshalb habe ich alles Unnötige geschlossen.
Aber am Speicher scheint es nicht zu liegen.
Fehler kommt leider auch keiner.
Woran könnte das liegen ?