Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
5answers
2k views

Is my Android App Draining Battery?

I'm developing a game for Android. It uses a surface view and uses the sort of standard 2D drawing APIs provided. When I first released the game, I was doing all sorts of daft things like re-drawing ...
13
votes
2answers
8k views

Android Battery in SDK

Is there a way to get battery information from the Android SDK? Such as battery life remaining and so on? I cannot find it through the docs.
9
votes
1answer
488 views

How to read the number of battery charges?

as mentioned above, I want to get the total number of battery chrarges. The batery Intent I'm already using only shows me Level, Voltage, Temperature ... but not the total loading cycles.
8
votes
2answers
4k views

Get battery level before broadcast receiver responds for Intent.ACTION_BATTERY_CHANGED

I have a broadcast receiver in my program to get react to the battery level like so: private BroadcastReceiver mBatInfoReceiver = new BroadcastReceiver(){ @Override public void ...
8
votes
2answers
3k views

Get battery level and state in Android

How can I get battery level and state (plugged in, discharging, charging, etc)? I researched the developer docs and I found a BatteryManager class. But it doesn't contain any methods, just constants. ...
7
votes
2answers
939 views

getting battery level at android widget

I wrote a widget for Android and I'm trying to get the battery level. I've tried using Intent batteryIntent = context.registerReceiver(null, new IntentFilter(Intent.ACTION_BATTERY_CHANGED)); but I ...
7
votes
2answers
1k views

How to do power save on a arm based Embedded Linux system?

I plan to develop a nice little application that will run on a arm based embedded linux platform, however since that platform will be battery powered I'm searching for relevant information on how ...
7
votes
1answer
139 views

How can an application display an object on the Windows taskbar?

There are several applications around that display objects on the Windows taskbar but do no implement the IDeskBand interface. For example, the Lenovo batter meter and Notebook BatteryInfo. For ...
7
votes
3answers
1k views

Is OpenGL on Android a battery killer?

I'm currently implementing a software keyboard ( using some sophisticated prediction ), and drawing it using canvas is insufficient in terms of perfomance. I'm getting frame drawing times well above ...
7
votes
12answers
5k views

Increasing Battery Life Under Linux [closed]

All right, this is something I think everyone can agree would be nice to have: Longer Battery Life I have a Thinkpad T61p and am currently running Fedora 9 on it. I love sitting outside and coding ...
6
votes
6answers
417 views

Smoothing function for battery voltage display to reduce spikes in embedded system

Reading a battery voltage in an embedded device. However, the actual voltage varies greatly depending upon system load. We need a method to reduce the fluctuation of the voltage to display the best ...
6
votes
3answers
488 views

Linux c++: apis vs /proc files?

Im working on an app to collect and send various bits of system info (partition space/free, laptop battery info, etc). Im not having much success getting this information in the form of direct c++ ...
6
votes
1answer
493 views

Determine Android phone's proximity to known point while conserving power

I am trying to determine if an Android user has had a close proximity to a list of predetermined locations. I'd like to do this with the least amount of drain on the phone's battery. The two ...
6
votes
4answers
7k views

Getting the battery current values for the Android Phone

I am trying to collect power usage statistics for the Android G1 Phone. I am interested in knowing the values of Voltage and Current, and then able to collect statistics as reported in this PDF. I ...
6
votes
2answers
892 views

How to obtain Battery Stats in Android at runtime?

I want to display Battery level stats in my app. How can we obtain such information like Battery Power, Battery Voltage, etc.?
5
votes
4answers
140 views

Find out battery status in C# or .NET

I have an application that gets detailed system information, and I have been able to get the percent of charge remaining, but not the percent of the battery itself. Explaination: As time goes on, the ...
4
votes
2answers
127 views

Android disable display off while charging

In my application I need to disable display power off when device is charging. There is an option in Developer Menu to disable it, so I can to send Intent for user to enable it. Also I've found info ...
4
votes
2answers
184 views

iPhone running periodical process in the background - battery optimized way

I want to run a specific task in the background. This task takes few seconds to complete (it writes some GPS location data to a file). This task should run once every 1 hour. As I understand from the ...
4
votes
1answer
434 views

Read Magic Mouse and Apple Wireless Keyboard Battery percentage

I want to ask you If anybody know a simple way to access Mouse and Keyboard battery state in Mac OS. There are some API to access this information? Thanks!
4
votes
3answers
1k views

How do I get battery information in windows?

I have two laptops here. One is running Vista, the other Windows 7. I need to get the specifications on the batteries in both, how do I go about that? The reason I'm asking is that I'd like to know ...
4
votes
6answers
407 views

How do you manage battery health of your development devices when is always plugged in?

I know this question is not programming related, so for this I made community wiki. Developers are the best guys to answer the question. I am addressed to those that do development on devices that ...
4
votes
9answers
4k views

How can I programmatically stop a notebook battery from charging

There is some easily available information on finding the status of a battery, or weather it's charging or not. (GetSystemPowerStatus API or System.Windows.Forms.SystemInformation.PowerStatus). I ...
4
votes
4answers
842 views

Preserving battery life when using Xcode - your settings/recommendations?

I often find myself wanting to open Xcode and do a little coding on international flights and while I'm away from power, but it's a quick way to empty my MacBook Pro's battery. What settings do you ...
4
votes
5answers
2k views

Compact Framework - System.Threading.Timer stops when the user turns off the screen

I have an application that needs to "poll" a webservice to see if the user has any new messages waiting. I have no control over the webservice so I cannot switch to a "push" mechanism, I'm stuck ...
3
votes
2answers
81 views

iPhone4 how to find out if the power cable is plugged in?

I would like to know if my app is running with an external power cable attached. Is it possible to find out this state at runtime? An extra question: would this be able to differentiate between true ...
3
votes
1answer
81 views

Programmatically prevents battery charge

Some computers (Dell, Vaio) comes with a software that prevents battery to charge. Then i can use my laptop with battery (protected from power outage) and keep my battery in 50%. I want do write some ...
3
votes
2answers
2k views

How to remove the battery icon in android status bar?

I've removed the status bar which shows network, battery and time information in Android by take off the background image. But the icons are still there. Just wanna know how to remove the battery icon ...
3
votes
1answer
516 views

gui control that shows current battery level windows mobile C#

I'm looking for a control for visual studio that can display the current battery life of windows mobile device.. Has anyone come across this before? Do you know if we can create such a control by ...
3
votes
1answer
447 views

Do android broadcast recievers consume battery life?

I have two recievers that are listening for android.intent.action.BOOT_COMPLETED and android.intent.action.PACKAGE_REPLACED. I was wondering how much battery life they are causing my phone to consume ...
3
votes
3answers
327 views

Debugging battery warning

I have an app that connects to an external accessory via Bluetooth. Testers have reported that the connection gets dropped when "Low Battery" alert is displayed. This was reported on iPod touch 2nd ...
3
votes
1answer
718 views

Get WP7 battery telemetry data?

I'm looking for a way to get the current battery telemetry under Windows Phone 7. The closest part of the framework looks like Microsoft.Phone.Info.DeviceExtendedProperties.GetValue() but it seems you ...
3
votes
7answers
713 views

Stopping and starting a Service based on application state

I have a Service which tracks the location of the user. Currently, the Service boots when the application starts and stops when the application terminates. Unfortunately, if users keep the ...
3
votes
1answer
578 views

Read the current battery charge/discharge rate on a laptop

I've wrote a small piece of code that reads the current battery charge/discharge on my laptop. I followed the example code on this MSDN page. My program updates the information every 100ms (by ...
3
votes
3answers
521 views

How to get the Battery Charge Level specifically in mWh (not percentage) for Mac (Cocoa or C)

The title pretty much explains it all. I'm creating a mac app and I need the battery charge level specifically in mWh (not percentage). Would like to do it in C or Objective C preferably. Thanks!
3
votes
1answer
161 views

What settings can my app control to conserve battery life?

I was wondering what settings an application can control to improve battery life in the Android environment. On most laptops, you can control screen brightness, wireless adapter settings, etc, as a ...
3
votes
3answers
2k views

Battery status in OSX?

How can I read the status of the battery on my MacBookPro from my own application? Googling has so far only revealed APIs for device drivers to handle power events - there's nothing about user-land ...
2
votes
1answer
42 views

Toggle iPhone Charging through OS X or XCode

I'm currently writing an iOS application and am receiving battery status change notifications. Of course, when I'm debugging my app it would be nice if I could toggle the battery status without ...
2
votes
3answers
230 views

iPhone GPS - Battery Draining Extremely Fast

Will greatly appreciate your help. We are developing an app that has heavy GPS usage and we are unable to optimize the battery life. Even when the device is not moved, there is significant battery ...
2
votes
1answer
155 views

What are the most battery-consuming things you can do in an iPhone-app?

I am making an app that quickly drains the users battery. For this, I am planning on using the sound-framework for vibrating, location services, download large but empty files from the internet, use ...
2
votes
3answers
110 views

What are the things which reduces (Android) battery time?

In one of our application we need to use the GPS continuesly ,the purpose is to get the user driving speed. Recently I found that while using the GPS continuesly can drain the device battery. If the ...
2
votes
4answers
198 views

Read Laptop Battery Status in Float/Double

I have a program that reads battery status in Windows that looks like this (simplified code): #include <iostream> #include <windows.h> using namespace std; int main(int argc, char ...
2
votes
1answer
237 views

Detecting the device being plugged in

I would like to be able to detect whether or not the device is plugged in. I would like to be able to just query that the same way we can do for the connectivity state. Is that possible or do I need ...
2
votes
1answer
295 views

Creating a graph similar to Battery usage in Gingerbread

I just wanted to create a trend in my activity that would look like the Gingerbread battery one (see picture above) I am looking deeply in the Android git and found what seem to be the correct ...
2
votes
2answers
322 views

constantly watching the battery?

I dont know if this can be done but right now i have a service that has an alarm manager which refreshed the battery every 5 mins to check the battery % and alert of the battery gets below a certain ...
2
votes
2answers
220 views

Faking the battery info in my laptop

How one can fake the battery info in the laptop? I am working on a tool that must fake the power of the battery in my laptop, this means that tool must force the battery or laptop to report low power ...
2
votes
3answers
376 views

How to save the Battery life in Android Phone?

I want to know about the battery usage percentage for each apps and available battery power in the android.
2
votes
2answers
653 views

Weird behaviour when using intent and BroadcastReceiver to get android battery level

I am trying to find the battery level after running an android app. When the phone starts the app completely charged the code always returns 100% battery level (even though it has drained a lot). If I ...
2
votes
1answer
395 views

What are the units for battery temperature and voltage when Intent.BATTERY_ACTION_CHANGED on android device?

I retrieved battery temperature and voltage information using the intent Intent.ACTION_BATTERY_CHANGED and the values I got are pretty weird. I could not get any clue: temperature=270 and ...
2
votes
1answer
200 views

Can an iPhone app receive battery notifications when running in background

Can my iPhone app running in background receive battery notifications? My app has registered for battery notifications: Battery notifications- (void)batteryLevelDidChange:(NSNotification ...
2
votes
2answers
118 views

how can i know the phone‘s electricity consumption

all.i want to know the phone‘s electricity cost in my apps.but the BatteryManager can't give the information.how can i get this?

1 2 3 4