linux驱动程序应如何向用户空间指示低电量指示? 我在power_supply.h中找不到任何支持。 Android服务是否应该通过读取电池容量来处理这个问题?
Highyl非常感谢您回答此问题的努力。
由于 内甚
答案 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));