2011-08-26 57 views
16

我正在開發一個應用程序,通過意圖發送數據到Android日曆。 它適用於從2.1到2.3.4的默認安卓日曆以及第三方日曆,如Jorte或Business Calender。日曆意圖字段標題/說明不工作在摩托羅拉Xoom蜂窩3.1和宏碁Iconia

但與蜂窩(宏基Iconia和摩托羅拉Xoom)我沒有得到標題和描述在現場通過。

我已經全部通過現場填寫,年,月,日,時,分,但沒有說明和TITLE

GregorianCalendar cal = new GregorianCalendar(); 
Intent intent = new Intent(Intent.ACTION_EDIT); 
intent.setType("vnd.android.cursor.item/event"); 
cal.set(Calendar.YEAR, Integer.parseInt(pv.getYear())); 
cal.set(Calendar.MONTH, Integer.parseInt(pv.getMonth())); 
cal.set(Calendar.DAY_OF_MONTH, Integer.parseInt(pv.getDay())); 
cal.set(Calendar.HOUR_OF_DAY, Integer.parseInt(pv.getHours())); 
cal.set(Calendar.MINUTE, Integer.parseInt(pv.getMinutes())); 
cal.set(Calendar.SECOND, 0); 
cal.set(Calendar.MILLISECOND, 0); 

intent.putExtra("beginTime", cal.getTimeInMillis()); 
cal.add(Calendar.MINUTE, Integer.parseInt(eventTime)); 
intent.putExtra("endTime", cal.getTimeInMillis()); 
String description = pv.getDescription().trim(); 
intent.putExtra("title", title); // **NOT WORKING** 
intent.putExtra("description", description); // **NOT WORKING** 
startActivity(intent); 

什麼想法? 謝謝 桑德羅

編輯: 看起來像沒有關於與蜂窩意圖的標題和描述。 我們能夠做到的唯一方法就是使用內容提供者,這是一種完全不同的方法。

+0

喜桑德羅 - 是你能解決這個問題?謝謝。 – eli

回答

相關問題