在某进程中写了一个广播Intent的代码,遇到的问题是:
1. new Intent(); 不写参数可以吗?
2. intent.setAction("任意字符串"); 写入任意字符串可以吗?没有在manifest中注册
3. 在没有写接收端代码,以及没在manifest中注册action的情况下,如何验证发送成功?
一下贴出代码
public void run() {
Intent intent = Intent();
intent.setAction("com.test.action");
intent.putExtra("myKey", 1);
sendBroadcast(intent);
}