バックグラウンドで smsInterceptor を使用することは可能ですか? 私はそのためにサービスを使用しようとしていますが、それは機能しません.MessageReceivedイベントで私のためにSMSをトーストメッセージしません.
'Service module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Dim smsint As SmsInterceptor
End Sub
Sub Service_Create
smsint.Initialize("smsint")
End Sub
Sub Service_Start (StartingIntent As Intent)
StartServiceAt("", DateTime.Now + 30 * DateTime.TicksPerSecond, True)
End Sub
Sub Service_Destroy
End Sub
Sub MessageReceived (From As String, Body As String)
ToastMessageShow(From & " - " & Body, True)
End Sub
これはおそらく間違っています、私はそれを行う方法を理解していません。サービスモジュールのスレッドを読んでも、どこにも行きませんでした:/