Android BatteryManager Returns only 1
问题 I am attempting to read the state of the Android battery when my repeating alarm broadcaster is called I have the following setup: public class RepeatingAlarm extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { // Acquire the make of the device final String PhoneModel = android.os.Build.MODEL; final String AndroidVersion = android.os.Build.VERSION.RELEASE; // Grab the battery information int level = intent.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);