完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
|
|
相关推荐
1个回答
|
|
原理概述:
手机电池电量的获取在应用程序的开发中也很常用,Android系统中手机电池电量发生变化的消息是通过Intent广播来实现的,常用的Intent的Action有 Intent.ACTION_BATTERY_CHANGED(电池电量发生改变时)、Intent.ACTION_BATTERY_LOW(电池电量达到下限时)、和Intent.ACTION_BATTERY_OKAY(电池电量从低恢复到高时)。 当需要在程序中获取电池电量的信息时,需要为应用程序注册BroadcastReceiver组件,当特定的Action事件发生时,系统将会发出相应的广播,应用程序就可以通过BroadcastReceiver来接受广播,并进行相应的处理。 main.xml布局文件 android:orientatio android:layout_widt android:layout_heigh》 android:layout_widt android:layout_heigh android:textO android:textOf /》 android:layout_widt android:layout_heigh /》 复制代码 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; publics 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); } } }); } privates 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+“%。”); } } } |
|
|
|
只有小组成员才能发言,加入小组>>
如何使用STM32+nrf24l01架构把有线USB设备无线化?
2593 浏览 7 评论
请问能利用51单片机和nRF24L01模块实现实时语音无线传输吗?
2408 浏览 5 评论
3269 浏览 3 评论
2868 浏览 8 评论
为什么ucosii上移植lwip后系统进入了HardFault_Handler?
2820 浏览 4 评论
请教各位大咖:有没有接收频率32M左右的芯片推荐的?先感谢啦!
711浏览 1评论
941浏览 0评论
1077浏览 0评论
710浏览 0评论
538浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2025-1-23 04:56 , Processed in 0.983272 second(s), Total 47, Slave 41 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号