In My app, I'm using "ACTION_BATTERY_CHANGED" intent to find battery level of the Android device.
** Problem:**
consider If the device is having 1-20 as battery level, I need to show low battery icon in my application.I'm not able to show immediately
I have registered the broadcast receiver for ACTION_BATTERY_CHANGED Intent on app launch itself. Since this is System wide announcement, I am not able to get immediately.
Can I trigger Broadcast for ACTION_BATTERY_CHANGED Intent using SendBroadcast() on App Launch?
Is this a correct behavior?