WEB开发网
开发学院手机开发Android 开发 控制Android应用程序的耗电量 阅读

控制Android应用程序的耗电量

 2012-11-27 14:23:37 来源:WEB开发网   
核心提示:使用GZIP压缩方式下载数据,能减少网络流量,控制Android应用程序的耗电量(2),下图为使用GZIP方式获取包含1800个主题的RSS对比情况,4、其它一些优化方法:回收java对象,在运行你的程序前先检查电量,电量太低,特别是较大的java对像 XmlPullParserFactory and BitmapFa

使用GZIP压缩方式下载数据,能减少网络流量,下图为使用GZIP方式获取包含1800个主题的RSS对比情况。

  4、其它一些优化方法:
  回收java对象,特别是较大的java对像
XmlPullParserFactory and BitmapFactory Matcher.reset(newString) for regex StringBuilder.sentLength(0)

 对定位要求不是太高的话尽量不要使用GPS定位,可能使用wifi和移动网络cell定位即可。GPS定位消耗的电量远远高于移动网络定位。

  尽量不要使用浮点运算。
  获取屏幕尺寸等信息可以使用缓存技术,不需要进行多次请求。
  很多人开发的程序后台都会一个service不停的去服务器上更新数据,在不更新数据的时候就让它sleep,这种方式是非常耗电的,通常情况下,我们可以使用AlarmManager来定时启动服务。如下所示,第30分钟执行一次。
AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent(context, MyService.class); PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, 0); long interval = DateUtils.MINUTE_IN_MILLIS * 30; long firstWake = System.currentTimeMillis() + interval; am.setRepeating(AlarmManager.RTC,firstWake, interval, pendingIntent);
 

最后一招,在运行你的程序前先检查电量,电量太低,那么就提示用户充电之类的,使用方法:

 
public void onCreate() { 
     // Register for sticky broadcast and send default     
     registerReceiver(mReceiver, mFilter);    
     mHandler.sendEmptyMessageDelayed(MSG_BATT, 1000);    
 }   
 IntentFilter mFilter =    
         new IntentFilter(Intent.ACTION_BATTERY_CHANGED);    
 BroadcastReceiver mReceiver = new BroadcastReceiver() {   
     public void onReceive(Context context, Intent intent) {
         // Found sticky broadcast, so trigger update     
         unregisterReceiver(mReceiver);    
         mHandler.removeMessages(MSG_BATT);    
         mHandler.obtainMessage(MSG_BATT, intent).sendToTarget();    
     }   
 };  

上一页  1 2 

Tags:控制 Android 应用程序

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接