У меня есть класс, который выглядит так:
package com.broadcast;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class BroadcastActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void tasterPritisnut(View target) {
Intent intent = new Intent("akcija");
intent.putExtra("message", "Hello Valakar");
this.sendBroadcast(intent);
}
}
Это вещательный класс. Класс манифеста это:
<uses-sdk android:minSdkVersion="10" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".BroadcastActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Теперь я создал новый проект с новым классом:
package com.reciever;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class Reciever4 extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
String poruka = intent.getStringExtra("message");
Log.d("", poruka + " " + Thread.currentThread().getName() + " " + Thread.currentThread().getId());
}
}
Это класс получателя, и файл манифеста выглядит так:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reciever"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<receiver android:name=".Reciever4">
<intent-filter>
<action android:name="akcija"/>
</intent-filter>
</receiver>
</application>
</manifest>
Я установил оба приложения, но при отправке трансляции в журнале ничего не печаталось. Я построил этот пример, похожий на пример книги Apress, но не могу заставить его работать. Чего мне не хватает?