2012-10-14 94 views
1

目前,我在Android Java上研究calDAV协议,我卡在CalDAV Authentication中。我清楚地知道它是如何工作的。每个人都可以给我简单的示例项目来演示它吗?谢谢大家。CalDAV实现

回答

0

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; 
+0

谢谢你,但我需要简单的示例项目.. –