I have an app with a simple toggle switch that turns the flashlight on and off, I needed code I can use to check if the Flashlight is already on and then use that to change the toggle state of the switch... If the service reports the Flashlight to be on, i will send a broadcast intent to turn it off and vice versa... My app logic is here
class SecondActivity : AppCompatActivity{
protected override void OnCreate(Bundle onSavedInstanceState){
//Switch definition
Switch switch1 = this.FindViewById<Switch>(Resource.Id.switch2);
//Setting the intial status of the switch to be unchecked by default
switch1.Checked=false;
//Adding delegate method to handle switch checked event
switch1.CheckedChange += delegate (object sender, CompoundButton.CheckedChangeEventArgs e)
{
if (e.IsChecked==true)
{
//Switch is on so turn on Flahlight
Flashlight.TurnOnAsync();
Toast.MakeText(Application.Context, "Switch is ON", ToastLength.Long).Show();
}
else
{
//Switch is unchecked so turn off flashlight
Flashlight.TurnOffAsync();
Toast.MakeText(Application.Context, "Switch is OFF", ToastLength.Long).Show();
}
};
//Code to check if flashlight was turned on by an extra app activity
}
}
A user could turn the flashlight on outside the app, so i just need that code to check if its already on, afterwards I will implement broadcast intent to make changes to my switch appropriately, Thanks for your time and contribution
Do you want to achieve the result like following gif?
I wirte two application to achieved:
MyForegroundServiceDemo: Use Broadcast to mintor the
flashlight
if is enable or not, to keep the broadcastReceiver always running at the background or foreground, I used forground service to achieve it. then register the broadcastRecevier in foreground serivice.XAndroidBroadcastRece: just open/close the flashlight.
Here is my MyForegroundServiceDemo code.
First of all, you need add and grand Camera& Flashlightpermission in the
AndroidManifest.xml
.Then, Here is my layout.xml
Here is my
MainActivity.cs
. I usedButton1
to enable the forground service. And expose theSwitch
that we can control it in the broadcastReceiver.Here is code about
MyForegroundService.cs
.When we receiver the broadcast In theMyReceiver(BroadcastReceiver)
, we mintor the flashlight's status withMyTorchRegister
Here is XAndroidBroadcastRece demo code