Hello,
I am using NotificationBuilder for notify my users.
This library support set Tag for each notify and read it Activity_Resume.
After get Notify Tag when i try call another function i got below error. Any help
I am using NotificationBuilder for notify my users.
This library support set Tag for each notify and read it Activity_Resume.
B4X:
Sub Activity_Resume
Try
Dim in As Intent
Dim intentExtra As String
in = Activity.GetStartingIntent
If in.HasExtra("Notification_Tag") Then
intentExtra = in.GetExtra("Notification_Tag")
Select Case intentExtra
Case"Message"
DrawScreen("Messages")
Case"Notify"
DrawScreen("Notifications")
Case"Visitor"
DrawScreen("IconWho")
Case "Bid"
DrawScreen("SeeAllBids")
EndSelect
End If
Catch
Log (LastException)
End Try
EndSub
After get Notify Tag when i try call another function i got below error. Any help
B4X:
java.lang.IllegalStateException: Recursive entry to executePendingTransactions