0

我正在开发一个应用程序(主要供私人使用),我想在其中实现一个密码系统。

我已经设置了以下广播接收器,但是当我进入*#*#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"到接收器,但是没有区别。

4

2 回答 2

1

我发现这是由于 Android 3.1+ 的变化

广播接收器现在将无法工作,直到应用程序在 Android 3.1+ 上启动,因此该应用程序将无法工作。

绕过它的方法是将其安装为系统应用程序,或者允许用户手动启动它,然后隐藏图标。

于 2013-01-06T11:01:33.617 回答
0

尝试使用完整的包名

<receiver android:name="com.something.something.CodeReceive" >
于 2013-01-05T19:54:05.210 回答