在Android日历和我的Exchange帐户之间进行同步, 最初我使用扩展属性从Outlook创建了事件,然后当我使用下面的代码段在Android日历中获取这些扩展属性时:
cursorExtendedProp = context.getContentResolver().query(Uri.parse(ExtendedProperties.CONTENT_URI.toString()),new String[] {ExtendedProperties._ID, ExtendedProperties.NAME, ExtendedProperties.VALUE}, null, null, null);
while (cursorExtendedProp.moveToNext()) {
cursorExtendedProp.getString(0);
cursorExtendedProp.getString(1);
cursorExtendedProp.getString(2);
}
cursorExtendedProp.close();
我没有得到最初从展望中创建的扩展礼节。 我错过了什么 ?需要一些帮助。