我制作了两个应用程序,并试图将意图从一个发送到另一个,但意图永远不会到达,onReceive()
但是这个问题只是一种方式。第一个应用程序可以发送给第二个,但第二个不能发回信息。我正在使用不同的意图操作从第二个发送到第一个,但除此之外它们是相同的。关于为什么这可能不起作用的任何想法?我已经尝试了我能想到的一切,并阅读了我能在这里找到的大部分帖子,但无济于事。
它没有崩溃或给我任何关于 logcat 中发生的事情的迹象,它只是什么都不做。
发送功能
private void sendFinishLog(String ID, String Cond)
{
Log.d("me", "send finish log");
Intent logIntent = new Intent();
logIntent.putExtra("ID", ID);
logIntent.putExtra("Cond", Cond);
logIntent.setAction("com.me.intent.finishlog");
Log.d("me","logIntent : " + logIntent.toString()
+logIntent.getExtras().toString());
sendBroadcast(logIntent);
}
接班
public class LogReceiver extends BroadcastReceiver {
public static ArrayList<LogDataHolder> logData = new ArrayList<LogDataHolder>();
private boolean found;
static SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
private static String lasttime;
private static String now = "Boot time";
@Override
public void onReceive(Context cont, Intent logIntent)
{
Log.d("me","On receive");
etc.....
}
接收应用清单
<!-- for receiving logs -->
<receiver
android:name = "LogReceiver"
android:enabled="true">
<intent_filter>
<action android:name="com.me.intent.finishlog" />
</intent_filter>
</receiver>