1
目前,我在Android Java上研究calDAV协议,我卡在CalDAV Authentication中。我清楚地知道它是如何工作的。每个人都可以给我简单的示例项目来演示它吗?谢谢大家。CalDAV实现
目前,我在Android Java上研究calDAV协议,我卡在CalDAV Authentication中。我清楚地知道它是如何工作的。每个人都可以给我简单的示例项目来演示它吗?谢谢大家。CalDAV实现
Check this支持CalDAV认证用法:
@Override
public IBinder onBind(Intent arg0) {
IBinder ret = null;
if (ourAuthenticator == null) {
ourAuthenticator = new Authenticator(this);
}
if (arg0.getAction().equals(AccountManager.ACTION_AUTHENTICATOR_INTENT)) {
ret = ourAuthenticator.getIBinder();
}
return ret;
谢谢你,但我需要简单的示例项目.. –