我正在使用 PhoneGap 2 并尝试使用 inbox_sent添加 SMS 功能。按照说明,我添加了 SMSRead.java 文件。
但我有未定义的错误
private ContentResolver getContentResolver(){
return this.ctx.getContentResolver();
}
这么说
对于 LegacyContext 类型,方法 getContentResolver() 未定义
请帮忙
我正在使用 PhoneGap 2 并尝试使用 inbox_sent添加 SMS 功能。按照说明,我添加了 SMSRead.java 文件。
但我有未定义的错误
private ContentResolver getContentResolver(){
return this.ctx.getContentResolver();
}
这么说
对于 LegacyContext 类型,方法 getContentResolver() 未定义
请帮忙
我发现http://simonmacdonald.blogspot.co.uk/2012/07/phonegap-android-plugins-sometimes-we.html上的文章很有帮助。
此插件的 API 发生了一些更改,代码需要更新。
根据上面页面上的信息,您应该更新您的阅读方法。
private ContentResolver getContentResolver(){
return cordova.getActivity().getContentResolver();
}
我仍在将这个插件集成到我的项目中,并且我知道在这一点之外还有一些挑战(但 Java 代码现在至少可以编译了。)