当使用广播接收器收到消息时,我制作了一个 android 应用程序来呼叫一个号码。但是我收到一个错误,没有找到处理意图的活动。我怎么解决这个问题?
代码如下
Intent intent1 = new Intent(Intent.ACTION_CALL);
intent1.setData(Uri.parse(incno1));
context.startActivity(intent1);
我添加了这一行intent1.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
,但这也不能解决我的问题。