时间:2021-05-20
本文实例讲述了Android获取手机电池电量用法。分享给大家供大家参考。具体如下:
原理概述:
手机电池电量的获取在应用程序的开发中也很常用,Android系统中手机电池电量发生变化的消息是通过Intent广播来实现的,常用的Intent的Action有 Intent.ACTION_BATTERY_CHANGED(电池电量发生改变时)、Intent.ACTION_BATTERY_LOW(电池电量达到下限时)、和Intent.ACTION_BATTERY_OKAY(电池电量从低恢复到高时)。
当需要在程序中获取电池电量的信息时,需要为应用程序注册BroadcastReceiver组件,当特定的Action事件发生时,系统将会发出相应的广播,应用程序就可以通过BroadcastReceiver来接受广播,并进行相应的处理。
main.xml布局文件:
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ToggleButton android:id="@+id/tb" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textOn="停止获取电量信息" android:textOff="获取电量信息" /> <TextView android:id="@+id/tv" android:layout_width="fill_parent" android:layout_height="wrap_content" /></LinearLayout>BatteryActivity类:
package com.ljq.activity;import android.app.Activity;import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;import android.content.IntentFilter;import android.os.Bundle;import android.widget.CompoundButton;import android.widget.TextView;import android.widget.ToggleButton;import android.widget.CompoundButton.OnCheckedChangeListener;public class BatteryActivity extends Activity { private ToggleButton tb=null; private TextView tv=null; private BatteryReceiver receiver=null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); receiver=new BatteryReceiver(); tv=(TextView)findViewById(R.id.tv); tb=(ToggleButton)findViewById(R.id.tb); tb.setOnCheckedChangeListener(new OnCheckedChangeListener(){ public void onCheckedChanged(CompoundButton compoundButton, boolean isChecked) { //获取电池电量 if(isChecked){ IntentFilter filter=new IntentFilter(Intent.ACTION_BATTERY_CHANGED); registerReceiver(receiver, filter);//注册BroadcastReceiver }else { //停止获取电池电量 unregisterReceiver(receiver); tv.setText(null); } } }); } private class BatteryReceiver extends BroadcastReceiver{ @Override public void onReceive(Context context, Intent intent) { int current=intent.getExtras().getInt("level");//获得当前电量 int total=intent.getExtras().getInt("scale");//获得总电量 int percent=current*100/total; tv.setText("现在的电量是"+percent+"%。"); } }}运行结果:
希望本文所述对大家的Android程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
入手了iphone手机操作简单易上手,很多人遇到手机电池电量显示不准的请框,iphone5电池电量不准怎么办?苹果手机5电量百分比不变如何解决?一起来参考一下。
大家都知道,vivoy81手机电池电量是有限的,为了更准确的判断我们的电池余量,避免用电过多导致手机该使用时电量不够。下面大家带来vivoy81显示电量百分比教
vivoy3手机电池电量是有限的,为了更准确的判断我们的电池余量,避免用电过多导致手机该使用时电量不够。下面大家带来vivoy3显示电量百分比教程。vivoy3
手机充电不一定要充满才能拔。手机电池没充满就拔下来使用,不会影响电池寿命。电池没用完就充电,对电池寿命是有利的。相反的,如果每次电池电量都用到很低,甚至用光,对
信号的能力越强。反之通话时间越短,表示手机耗电量越大,手机接收信号的能力越差。 当然影响手机通话时间的主要因素是手机电池电量以及使用环境和使用方法,例如如果电