service.stopautomaticforeground

  1. A

    Android Question Service.StopAutomaticForeground in ver.12

    Hi all. I have a question - I'm testing my app in ver.12 and found a very strange situation. In Starter in sub Sub Service_Start (StartingIntent As Intent) I have a line Service.StopAutomaticForeground 'Starter service can start in the foreground state in some edge cases. It works fine in...
  2. carlos7000

    Android Question Execute a service every 'n' seconds [Solved]

    I want to create a service that runs every 'n' seconds. Before it was as simple as Private Sub Service_Start (StartingIntent As Intent) ToastMessageShow ("RUNNING...", False) StartServiceAt(Me, DateTime.Now + 60 * 1000, True) End Sub The code works, worse in the Log, it always appears...
  3. carlos7000

    Spanish Ejecutar un servicio de forma intermitente [solucionado]

    Hola a todos. Deseo crear un servicio que cada 'n' segundos se conecte con un servidor y solicite información para saber si hay pedidos. Ya leí los tutoriales de estos links: Intent Filters - Intercepting SMS messages in the background...
  4. lucad

    Android Question Notification service and Service.StopAutomaticForeground : App icon popup

    When the service is called from background to foreground, I can see the application Icon popping up into the upper notification area. It remains visible until the service code is completed ( until the Service.StopAutomaticForeground is called ) . This flashing icon can be annoying as it comes...
Top