0

私はAndroidを初めて使用し、ブロードキャストデモを試しています。ドキュメントを読んで最善を尽くしましたが、機能しません。私のコードを見てください:

BroadcastDemoActivity.java

package com.broadcastdemo;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class BroadcastDemoActivity extends Activity {
    /** Called when the activity is first created. */
    public static final String PUBLIC_HOLIDAYS = "com.paad.action.PUBLIC_HOLIDAYS";
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Intent intent = new Intent(PUBLIC_HOLIDAYS);
        intent.putExtra("Holiday", "8th April is a holiday");
        sendBroadcast(getIntent());
    }
}

Receive.java

package com.broadcastdemo;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;

public class Receive extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // TODO Auto-generated method stub
        String message = intent.getStringExtra("Holiday");
        Toast.makeText(context, message, Toast.LENGTH_SHORT).show();

    }

}

Manifest.xml

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

    <uses-sdk android:minSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".BroadcastDemoActivity"
            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=".Receive">
            <intent-filter>               
                <action android:name="com.paad.action.PUBLIC_HOLIDAYS"/>
            </intent-filter>            
        </receiver>
    </application>
</manifest>

私は私が気づいていない何かが欠けていることを知っています、助けてください。

4

1 に答える 1

0

あなたの問題はsendBroadcastの呼び出しにあると思います。

    Intent intent = new Intent(PUBLIC_HOLIDAYS);
    intent.putExtra("Holiday", "8th April is a holiday");
    sendBroadcast(getIntent());

作成したインテントを送信するのではなく、getIntent()から返されたインテントを送信します。これは、アクティビティが開始されたインテントになります。

そのはず

    Intent intent = new Intent(PUBLIC_HOLIDAYS);
    intent.putExtra("Holiday", "8th April is a holiday");
    sendBroadcast(intent);
于 2012-04-08T04:08:22.593 に答える