我有一个大问题我想检测在广播接收器的 BOOT_COMPLETED 之后 SIM 卡是否已更改我正在清单上写这个
<receiver android:name="startMobBroacastReciver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
并且权限是
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
这是我的代码
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
if("android.intent.action.BOOT_COMPLETED".equals(intent.getAction()))
{
tm=(TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
tel_num= (GsmCellLocation) tm.getCellLocation();
prefs=context.getSharedPreferences("myprefs", 0);
Log.i("SIM", " "+tel_num.getCid()+" "+tel_num.getLac()+" "+tm.getSimSerialNumber());
sim_serial_number=prefs.getString("SIM_serial", "null");
Toast.makeText(context, "add "+tm.getSimSerialNumber(), Toast.LENGTH_LONG).show();
顺便说一句 tel_num.getCid() 和 tel_num.getLac() 返回值但 tm.getSimSerialNumber() 返回 null ,这就是让我发疯的原因:(请提供任何帮助