SmsManager:短信管理器
AudioManager:音频管理器
Vibrator:手机震动
AlarmManager:闹钟管理器
SmsManager:短信管理器
AudioManager:音频管理器
Vibrator:手机震动
AlarmManager:闹钟管理器
//关闭或打开飞行模式时的广播
Intent.ACTION_AIRPLANE_M;
//充电状态,或者电池的电量发生变化;//电池的充电状态、电荷级别改变,不能通过组建声;
Intent.ACTION_BATTERY_CH;
//表示电池电量低
Intent.ACTION_BATTERY_LO;
//表示电池电量充足
Intent.ACTION_BATTERY_OK;
//关闭或打开飞行模式时的广播
Intent.ACTION_AIRPLANE_MODE_CHANGED;
//充电状态,或者电池的电量发生变化//电池的充电状态、电荷级别改变,不能通过组建声明接收这个广播,只有通过Context.registerReceiver()注册
Intent.ACTION_BATTERY_CHANGED;
1.首先开机启动后系统会发出一个Standard Broadcast Action,名字叫android.intent.action.BOOT_COMPLETED,这个Action只会发出一次。
2.构造一个IntentReceiver类,重构其抽象方法onReceiveIntent(Context context, Intent intent),在其中启动你想要启动的Service。
3.在AndroidManifest.xml中,首先加入
<uses-permission android:name=”android.permission.RECEIVE_BOOT_COMPLETED”></uses-permission>
来获得BOOT_COMPLETED的使用许可,然后注册前面重构的IntentReceiver类,在其<intent-filter>中加入
<action android:name=”android.intent.action.BOOT_COMPLETED” /> ,以使其能捕捉到这个Action。
package com.lanxin.testanim;
import android.graphics.Camera;
import android.graphics.Matrix;
import android.util.Log;
import android.view.animation.Animation;
import android.view.animation.LinearInterpolator;
import android.view.animation.Transformation;
import java.util.Locale;
此APP只具备黑名单管理、拦截(自动挂断)、区域显示。
区域显示调用的是淘宝的API,所以在来电的时候会联网查询。
查询到了才会显示出来。
下载地址:
Android_Logo_96px_1124364
近期评论