Android BroadCast Receiver和GMC

时间:2013-03-26 15:03:08

标签: android android-intent google-cloud-messaging android-broadcast

我遇到了像use registerReceiver for non activity and non service class这样的问题。我尝试使用Google Message Cloud,我需要从一个活动注册BroadCastReceiver并从另一个活动中注销它。为此,我将BroadcastReceiver放在除活动之外的另一个包中 在我的活动中:

    public void onPushStateButtonClicked(View view) {
            // controllo se il bottone è su on
            boolean on = ((ToggleButton) view).isChecked();
            PushClientService p = new PushClientService();
            if (on) {
                // se il bottone  in impostazioni è settato ad on registro il dispositivo
                p.customReceiver(this);
                p.pushService(this);
            }else if(!on) {
                // se il bottone  in impostazioni è settato ad off cancello il dispositivo

                try{    
                    GCMRegistrar.unregister(this);
                    p.customUnregisterReceiver(this);

                }catch(IllegalArgumentException iAE){
                    Log.e("Errore:","device non registrato "+iAE);
                }
            }
}

在另一个班级我是这样的:

private final BroadcastReceiver mHandleMessageReceiver =
            new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                String newMessage = intent.getExtras().getString(EXTRA_MESSAGE);
                Log.d("Message",newMessage);
            }
        };
        public void customReceiver(Context context){
            context.registerReceiver(mHandleMessageReceiver,
                    new IntentFilter(DISPLAY_MESSAGE_ACTION));
        }
        public void customUnregisterReceiver(Context context){
            context.unregisterReceiver(mHandleMessageReceiver);
        }

这就是清单:

?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.testpushcall"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
    <permission android:name="com.example.testpushcall.permission.C2D_MESSAGE" android:protectionLevel="signature" />
    <uses-permission android:name="com.example.testpushcall.permission.C2D_MESSAGE" /> 
    <!-- App receives GCM messages. -->
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
    <!-- GCM connects to Google Services. -->
    <uses-permission android:name="android.permission.INTERNET" /> 
    <!-- GCM requires a Google account. -->
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <!-- Keeps the processor from sleeping when a message is received. -->
    <uses-permission android:name="android.permission.WAKE_LOCK" />

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <receiver android:name="com.example.testpushcall.utils.CustomGCMBroadcastReceiver" 
            android:permission="com.google.android.c2dm.permission.SEND" >
          <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
            <category android:name="com.example.testpushcall" />
          </intent-filter>
        </receiver>
        <service android:name="com.example.testpushcall.utils.GCMIntentService" />
    </application>

</manifest>

当我取消注册接收者时,mHandleMessageReceiver的值与注册不同,我该怎么办?使mHandleMessageReceiver静态?

请给我一个想法tnks

1 个答案:

答案 0 :(得分:1)

我只使用清单中声明的​​接收器解决了问题。 并注册和注销谷歌服务器的身份证件