我正在开发一个应用程序(主要供私人使用),我想在其中实现一个密码系统。
我已经设置了以下广播接收器,但是当我进入*#*#887755#*#*
它时,它不会启动接收器。
为什么是这样?请问谁能告诉我是什么问题?
AndroidManifest.xml
:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.liamwli.spyware.usertrack"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="10" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".ProcessSMS"
android:label="@string/app_name" >
</activity>
<activity
android:name=".ActivityConfig"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.liamwli.spyware.usertrack.ACTIVITYCONFIG" />
</intent-filter>
</activity>
<receiver android:name=".CodeReceive" >
<intent-filter>
<action android:name="android.provider.Telephony.SECRET_CODE" />
<data
android:host="887755"
android:scheme="android_secret_code" />
</intent-filter>
</receiver>
</application>
</manifest>
CodeReceive.java
:
package com.liamwli.spyware.usertrack;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
class CodeReceive extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent arg1) {
// TODO Auto-generated method stub
Toast.makeText(arg0, "Worked", Toast.LENGTH_SHORT).show();
Intent i = new Intent(arg0, ActivityConfig.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
arg0.startActivity(i);
}
}
我没有收到任何logcat 输出,并且我尝试添加android:exported="true"
到接收器,但是没有区别。