未找到活动例外:使用广播接收器

时间:2014-07-09 07:32:38

标签: java android android-intent broadcastreceiver intentfilter

我使用以下代码通过拨打密码*#*#8099#*#*来启动我的主要活动。我已经实现了一个用于处理意图的广播接收器。以下是代码。

public class SecretCodeReceiver extends BroadcastReceiver {

private static final String sidv_ = "sidv_";
private static final String SECRET_CODE_ACTION = "android.provider.Telephony.SECRET_CODE";

@Override
public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            String host = intent.getData() != null ? intent.getData().getHost() : null;

            if (SECRET_CODE_ACTION.equals(action) && "8099".equals.(host)) {
    Log.e(sidv_ , "in onReceive :: secret code receiver");
    Intent i = new Intent(Intent.ACTION_MAIN);
    i.setClass(context, MainActivity.class);
    i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(i); 
            }
    }
}

主要活动的代码是:

public class MainActivity extends Activity {

public void onCreate(Bundle savedInstanceState) {
    Toast.makeText(getBaseContext(), "This is the main activity", Toast.LENGTH_SHORT).show();
    PackageManager p = getPackageManager();
    ComponentName componentName = new ComponentName(this, com.sidvsharma.autohideapp.MainActivity.class);
    p.setComponentEnabledSetting(componentName,
            PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
   }
}

包名称为com.sidvsharma.autohideapp,清单文件中的类名为com.sidvsharma.autohideapp.MainActivity

我收到了MainActivity未找到活动的活动。

以下是清单文件:

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.sidvsharma.autohideapp.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>


    <receiver android:name=".SecretCodeReceiver">
        <intent-filter>
            <action android:name="android.provider.Telephony.SECRET_CODE"/>
        </intent-filter>    
    </receiver>

</application>

1 个答案:

答案 0 :(得分:0)

您只是忘记在 intent-filter 规范中添加数据标记。
以下是您应该编写的内容,以使ScretCodeReceiver响应 *#*#8099#*#* 密码。

<receiver android:name=".SecretCodeReceiver">
    <intent-filter>
        <action android:name="android.provider.Telephony.SECRET_CODE" />
        <data android:scheme="android_secret_code" android:host="8099" />
    </intent-filter>
</receiver>