All Questions
5 questions
0
votes
1
answer
290
views
Hidden Notification in StartForeground in xamarin form
Can I Hidden notification "App Name Is Running" When Service Runs in the background?
My Notification Is:
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, channelId)
...
0
votes
1
answer
138
views
Background Data to Content Page Xamarin
I have a problem I have a Background Service where I read data from Sensors (Android). Now I need the data from the Sensor at a ContenPage in PLC
but I dont know how can I send the data to PLC
` ...
2
votes
1
answer
98
views
Is it possible to change refresh rate after background location service has already started?
I would like to know if I can change refresh rate of background location service in the middle of its work. For example, user sets the refresh rate to 10 seconds and after some time he wants to change ...
1
vote
1
answer
1k
views
System level alert dialog in Xamarin Android
I want to show system level alert dialog in background service, I found How to display a Dialog from a Service but this answer use
dialog.getWindow().setType(WindowManager.LayoutParams....
1
vote
1
answer
2k
views
How to show alert messages popup from background service when app is in background
I need to show an alert message to the user when anything changes on server. I am using a background service for fetching any new updates from server after every 60 sec. Currently I am using ...