Android Question RingtoneManager launch the Activity_Resume ?

vbmundo

Well-Known Member
Licensed User
Hi,

I put the RingtoneManager (Phone Lib 1.80) into my project.

But I see that when the RingtoneManager start, and you select a Ringtone, then the Activity_Resume is executed.

And I see this lines in the LOG

B4X:
** Activity (main) Pause, UserClosed = false **
** Service (starter) Create **
** Service (starter) Start **
** Activity (main) Create, isFirst = true **
** Activity (main) Resume **
** Service (alarma) Create **
** Service (alarma) Start **
** Service (alarma) Destroy **
** Activity (main) Pause, UserClosed = false **
** Activity (nuevaalarma) Create, isFirst = true **
** Activity (nuevaalarma) Resume **
** Activity (nuevaalarma) Pause, UserClosed = false **
sending message to waiting queue (OnActivityResult)
running waiting messages (1)
** Activity (nuevaalarma) Resume **
** Activity (main) Resume **
** Activity (main) Pause, UserClosed = false **

It's the desired behaviour ?
 

lemonisdead

Well-Known Member
Licensed User
Longtime User
It's the desired behaviour ?
For me it is logical : when you select the ringtone you open a new Activity. So when the ringtone has been chosen, you come back to the previous activity which gets the Resume flag
 
Upvote 0
Top