初学Android,电池电量提示(七十五) .

http://blog.csdn.net/lee576/article/details/8099067

手机电量发生改变时,系统会对放发送Intent的Action为android.intent.action.BATTERY_CHANGED,这个可以在AndroidManifest.xml中配置

  1. <receiver android:name="BatteryReceiver" >  
  2.     <!-- 监听电池电量改变 -->  
  3.     <intent-filter>  
  4.         <action android:name="android.intent.action.BATTERY_CHANGED" />  
  5.     </intent-filter>  
  6. </receiver>  
        <receiver android:name="BatteryReceiver" >
            <!-- 监听电池电量改变 -->
            <intent-filter>
                <action android:name="android.intent.action.BATTERY_CHANGED" />
            </intent-filter>
        </receiver>


 

  1. package WangLi.Service.MonitorBattery;  
  2.   
  3. import android.content.BroadcastReceiver;  
  4. import android.content.Context;  
  5. import android.content.Intent;  
  6. import android.os.Bundle;  
  7. import android.widget.Toast;  
  8.   
  9. public class BatteryReceiver extends BroadcastReceiver {  
  10.   
  11.     @Override  
  12.     public void onReceive(Context context, Intent intent) {  
  13.         Bundle bundle = intent.getExtras();  
  14.         //获取当前电量   
  15.         int current = bundle.getInt("level");  
  16.         //获取总电量    
  17.         int total = bundle.getInt("scale");  
  18.         //如果当前电量小于总电量的15%   
  19.         if(current * 1.0 / total < 0.15)  
  20.         {  
  21.             Toast.makeText(context, "电量过低,请尽快充电"5000).show();  
  22.         }  
  23.     }  
  24. }  
package WangLi.Service.MonitorBattery;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.widget.Toast;

public class BatteryReceiver extends BroadcastReceiver {

	@Override
	public void onReceive(Context context, Intent intent) {
		Bundle bundle = intent.getExtras();
		//获取当前电量
		int current = bundle.getInt("level");
		//获取总电量 
		int total = bundle.getInt("scale");
		//如果当前电量小于总电量的15%
		if(current * 1.0 / total < 0.15)
		{
			Toast.makeText(context, "电量过低,请尽快充电", 5000).show();
		}
	}
}


 

注意这两行代码的使用

  1. //获取当前电量   
  2. int current = bundle.getInt("level");  
  3. //获取总电量    
  4. int total = bundle.getInt("scale");  

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值