Android BroadcastReceiver在单独的项目中

时间:2012-11-01 12:41:04

标签: android android-intent broadcastreceiver

我正在开发两个Android应用程序。 第一个呼叫广播接收器来自活动。 第二个包含从第一个应用程序调用的广播接收器。

当我与调用者活动在同一个应用程序中时,我设法进行广播呼叫。 但是,当我把接收器分开项目时,它不起作用。我应该改变什么?

1 个答案:

答案 0 :(得分:0)

这就是我注册接收器的方式:

 <receiver
        android:name=".TestReceiver"
        android:enabled="true" 
        android:exported="true"
        android:process=":deltaFO">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED"/>
            <action android:name="com.myapp.intent.action.FILE_OPERATION" />
        </intent-filter>

    </receiver>

这是我发送意图的方式

Intent intent = new Intent("com.myapp.intent.action.FILE_OPERATION");
        intent.putExtra("operation", operation);
        context.sendBroadcast(intent);

这是接收意图的类:

public class TestReceiver extends BroadcastReceiver{
public final String TAG="TestReceiver";

@Override
public void onReceive(Context context, Intent intent) {
    Log.i(TAG,"EXTERNAL BROADCAST...");

}

}