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>


http://edison-cool911.iteye.com/blog/737781

更多相关文章

  1. Android窗口机制(一)——Window,PhoneWindow,DecorView理解
  2. android获取手机电量
  3. Android窗口浮在屏幕上效果
  4. 全局窗口二
  5. Android(安卓)之欢迎界面Splash
  6. ch07 Android(安卓)日期与时间对话框
  7. Android日期对话框
  8. android获取手机电量
  9. 使Activity以对话框的形式弹出来

随机推荐

  1. Android:将AVD文件搬家(修改AVD路径)
  2. [导入]2010-03-06 传智播客—Android(六)通
  3. Android网络相关
  4. AIDE——运行于Android上的Android Java
  5. Android Studio 修改常用设置
  6. Android(安卓)事件分发
  7. Android Developers: 创建一个Android项
  8. Android(安卓)开发之拦截EditText的输入
  9. android菜单详解一:概述
  10. android利用FTP实现文件共享