service中 java.lang.RuntimeException: Unable to instantiate receiver has no zero argument constructor问题
时间: 2023-10-22 20:25:11 浏览: 249
javax.net.ssl.SSLException: java.lang.RuntimeException: Could not generate DH keypair 解决方法总结
这个问题通常是由于在service中注册了一个广播接收器,但是该广播接收器没有提供无参构造函数造成的。解决方法是在广播接收器中添加一个无参构造函数。例如:
```
public class MyReceiver extends BroadcastReceiver {
public MyReceiver() {
// 无参构造函数
}
@Override
public void onReceive(Context context, Intent intent) {
// 广播接收器的处理逻辑
}
}
```
阅读全文