我的应用程序中有一个活动和服务,我正在向另一个发送广播。当我的活动收到从我的服务发送的广播时,我的服务不会接收从我的活动发送的广播。
以下是我的一些代码:
活动
@Override
public void onResume()
{
Log.i(TAG, "in onResume");
IntentFilter messageFilter = new IntentFilter(Constants.MESSAGE);
messageReceiver receiver = new messageReceiver();
registerReceiver(receiver, messageFilter);
startService(new Intent(this, Server.class));
super.onResume();
}
public class messageReceiver extends BroadcastReceiver
{
@Override
public void onReceive (Context context, Intent intent)
{
Log.i(TAG, "in messageReceiver");
serverStatus.setText(intent.getStringExtra(Constants.MESSAGE));
}
}
@SuppressLint("ParserError")
public OnClickListener btnSendClicked = new OnClickListener() {
public void onClick(View v) {
Log.i(TAG, "btnSend clicked");
// This broadcast is NOT picked up by my Service
Intent sendClicked = new Intent(Constants.SEND_CLICKED);
sendBroadcast(sendClicked);
}
};
服务
@SuppressLint({ "ParserError", "ParserError", "ParserError" })
public class btnSendClickedReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context arg0, Intent arg1) {
// Do some stuff
}
};
@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
Log.i(TAG, "in onStartCommand");
SERVERIP = getLocalIpAddress();
IntentFilter sendClickedFilter = new IntentFilter(Constants.SEND_CLICKED);
btnSendClickedReceiver receiver = new btnSendClickedReceiver();
registerReceiver(receiver, sendClickedFilter);
runServer();
return START_STICKY;
}
@SuppressLint("ParserError")
public void runServer()
{
try
{
if (SERVERIP != null)
{
Log.i(TAG, "inside runServer");
// This broadcast is picked up by my activity:
Intent intent = new Intent(Constants.MESSAGE);
intent.putExtra(Constants.MESSAGE, "Listening on IP: " + SERVERIP);
sendBroadcast(intent);
serverSocket = new ServerSocket(SERVERPORT);
while (true)
{
client = serverSocket.accept();
Log.i(TAG, "connected");
Intent connectedIntent = new Intent(Constants.MESSAGE);
connectedIntent.putExtra(Constants.MESSAGE, "Connected");
sendBroadcast(connectedIntent);
}
}
else
{
// no internet connection
}
} catch (Exception e)
{
//Error
e.printStackTrace();
}
}
清单
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="message"/>
<action android:name="SendClicked"/>
</intent-filter>
</activity>
<service android:name=".Server" android:process=":remote">
</service>
我一直试图调试这几天,但我不确定问题是什么。任何帮助表示赞赏。
答案 0 :(得分:0)
尚未在androidManifest.xml文件中创建BroadCast接收器条目 请添加以上条目并尝试。
答案 1 :(得分:0)
我有同样的问题。我取出了:远程说明符然后它工作了。我不知道为什么会有所不同。而且我从来没有在清单中指定接收器。