B4A Tutorial Service Modules - Erel    Feb 7, 2023   (6 reactions)   tags: Services Basic4android v1.2 adds support for Service modules. Service modules play an important role in the application... a service module runs in the same process and the same thread as all other code. It is important to.... As you will soon see a service can also bring a process to the foreground. Adding a service module is done by choosing Project - Add New Module - Service Module. The template for new services is: Sub... are kept as long as the process runs and are accessible from other modules. Sub Service_Create... B4A Tutorial Downloading files using Service module - Erel    Jan 29, 2011   (2 reactions) DownloadService service: 'Service module Sub Process_Globals Dim HC As HttpClient...It is recommended to use HttpUtils2 instead of this code module. HttpUtils2 is more powerful and is easier to work with. As discussed in the Services tutorial, some tasks are easier to implement with services than with activities. In this example we will download an image file with a service and use it for the activity background. This service can be used to download larger files as well... B4J Question How do you stop a B4J service module - JackKirk    Oct 2, 2022 The title says it all.
There does not appear to be a StopService in B4J.... B4A Question [Service Module] Device in sleep mode does not work! - Roberto P.    Nov 4, 2016 HI All, I cannot run a service when the device goes in sleep mode. I tried to use the forum recommendations, including StartServiceAt, but does not work! Can anyone help me understand how to always run the service: off application and device in sleep. I attach small project. I specify that I have included two services just to make trials. Thanks so much... B4A Question [SOLVED] - Starting B4XPages from a service module - rleiman    Dec 1, 2020 Greetings,
We have a B4XPages app that includes a service module that starts with #StartAtBoot... that module when the user reboots their phone.
Maybe something like this?
#Region Service Attributes... B4A Question [SOLVED] - B4XPages - Starting service module when phone reboots - rleiman    Nov 29, 2020 Greetings,
I have this code to start a service module when the phone reboots but it doesn't... so the service module will start upon rebooting the phone? The good news is that Android doesn... B4A Question How to change view colors / text on a B4XPage from code present on a code/service module? - amorosik    Oct 13, 2020 I have an app for Android that receives sms
N.1 service module, 3 B4XPage with a command button on each
When sms arrives in the service module I have to change background color, button color, button text on the requested page
How to make code in the service module change these properties of any page?
In general, for the instructions present inside a code module, how to refer to the objects... B4A Question App without Starter service - is it not a default service module ? - amorosik    Sep 13, 2020 On multi pages app example Multi page B4XPages example there is only four modules, Main, B4XMainPage + Page2 + Page3 class module
Where is Starter service?
I thought the Starter module... notifications and sms, where to enter the code to initialize the required services (FirebaseMessage... B4A Tutorial Intent Filters - Intercepting SMS messages in the background - Erel    Jan 13, 2023   (14 reactions) be intercepted with dynamic receivers. Static receivers Each service module in Basic4android is made....SMS_RECEIVED" /> </intent-filter>) s1 is the name of the service module that the intent... of the Reflection library: 'Service module Sub Process_Globals Type Message (Address As String...Old tutorial. Don't use services. Use receivers. Broadcast receivers are program components... application is in the background. A possible workaround is to call Service.StartForeground in the service... B4A Question How change editText.text value from service module - Lello1964    Apr 7, 2020 I have more edittext in main module:
Main module :
dim EdiText01 as EditText
dim EdiText02... = " text4"
I must change text value from other Class Module
My Module :
EdiText01.text... Page: 1   2   3   4   5   6   7   |