2012-10-14 27 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

謝謝你,但我需要簡單的示例項目.. –