android低电量指示

时间:2011-10-20 10:01:31

标签: android battery

linux驱动程序应如何向用户空间指示低电量指示? 我在power_supply.h中找不到任何支持。 Android服务是否应该通过读取电池容量来处理这个问题?

Highyl非常感谢您回答此问题的努力。

由于 内甚

1 个答案:

答案 0 :(得分:0)

添加此代码

private BroadcastReceiver mBatInfoReceiver = new BroadcastReceiver(){
      @Override
      public void onReceive(Context arg0, Intent intent) {          
          int level = intent.getIntExtra("level", 0);
          // level...... it will show the battery information
          // you can use this variable to show the battery information.               
      }
};

this.registerReceiver(this.mBatInfoReceiver,new IntentFilter(Intent.ACTION_BATTERY_CHANGED));