android获取手机电量


import android.app.Activity;
import android.app.Dialog;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.TextView;

public class BatteryInfo extends Activity
{
/* 变量声明 */
private int intLevel;
private int intScale;
private Button mButton01;

/* 创建BroadcastReceiver */
private BroadcastReceiver mBatInfoReceiver = new BroadcastReceiver()
{
public void onReceive(Context context, Intent intent)
{
String action = intent.getAction();
/*
* 如果捕捉到的action是ACTION_BATTERY_CHANGED, 就运行onBatteryInfoReceiver()
*/
if (Intent.ACTION_BATTERY_CHANGED.equals(action))
{
intLevel = intent.getIntExtra("level", 0);
intScale = intent.getIntExtra("scale", 100);
Log.i("", "intLevel = " + intLevel);
Log.i("", "intScale = " + intScale);
onBatteryInfoReceiver(intLevel, intScale);
}
}
};

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

mButton01 = (Button) findViewById(R.id.myButton1);
mButton01.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v)
{

// 注册一个系统 BroadcastReceiver,作为访问电池计量之用
// 這個不能直接在AndroidManifest.xml中註冊
registerReceiver(mBatInfoReceiver, new IntentFilter(
Intent.ACTION_BATTERY_CHANGED));
}
});
}

/* 捕捉到ACTION_BATTERY_CHANGED时要运行的method */
public void onBatteryInfoReceiver(int intLevel, int intScale)
{
/* create 跳出的对话窗口 */
final Dialog d = new Dialog(BatteryInfo.this);
d.setTitle(R.string.str_dialog_title);
d.setContentView(R.layout.mydialog);

/* 创建一个背景模糊的Window,且将对话窗口放在前景 */
Window window = d.getWindow();
window.setFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND,
WindowManager.LayoutParams.FLAG_BLUR_BEHIND);

/* 将取得的电池计量显示于Dialog中 */
TextView mTextView02 = (TextView) d.findViewById(R.id.myTextView2);
mTextView02.setText(getResources()
.getText(R.string.str_dialog_body)
+ String.valueOf(intLevel * 100 / intScale) + "%");

/* 设置返回主画面的按钮 */
Button mButton02 = (Button) d.findViewById(R.id.myButton2);
mButton02.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v)
{
/* 反注册Receiver,并关闭对话窗口 */
unregisterReceiver(mBatInfoReceiver);
d.dismiss();
}
});
d.show();
}
}

代码里还用到了自定义的Dialog布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/white" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:id="@+id/myTextView2" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:textColor="@drawable/blue"
android:textSize="16sp" android:gravity="center" android:padding="10px">
</TextView>
<Button android:id="@+id/myButton2" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/str_button2">
</Button>
</LinearLayout>


[url]http://edison-cool911.iteye.com/blog/737781[/url]
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值