Android Question Service problem [solved]

MikiSoft

New Member
Licensed User
Longtime User
Sub in activity module:
B4X:
Sub Load()
    StartService(Srvice)
    Srvice.prd.Add("LOL")
    Msgbox(Srvice.prd.Get(0), "")
End Sub
Service ("Srvice") module:
B4X:
Sub Process_Globals
   Dim prd As List
End Sub

Sub Service_Create
   prd.Initialize
End Sub

Sub Service_Start (StartingIntent As Intent)

End Sub

This code above doesn't work. Where I've mistaken?
 
Top