回答
您使用了相同的密鑰(year
)在您的CalendarView
中存儲day
和year
。這就是爲什麼,當你看的關鍵day
返回null
(默認值)
您的問題是在CalendarView,你應該寫
i.putExtra("day",day);
,而不是
i.putExtra("year",day);
天啊。我愚弄我愚蠢的想法,我沒有做錯任何事。 – 2014-12-03 13:29:11
檢查你putextra( )您使用年份和年份的「年份」鍵
對不起,我的錯誤。我感到很慚愧^^。 – 2014-12-03 13:30:29
更改
i.putExtra("year", year);
i.putExtra("month", month);
i.putExtra("year", day);
到
i.putExtra("year", year);
i.putExtra("month", month);
i.putExtra("day", day);
通知的最後putExtra
第一個參數是如何不同。
我一整天都在做代碼,感覺很浪費......這就是爲什麼我沒有看到這一點。 ^^ – 2014-12-03 13:34:11
哈哈!它發生在每個人身上!有時你只需要一雙新鮮的眼睛! – OrhanC1 2014-12-03 13:44:30
代碼
i.putExtra("year",day);
更改爲
i.putExtra("day",day);
哦,我做到了。我犯了一個小錯誤,正在燒我。^^ – 2014-12-03 13:47:29
- 1. android-classnotfoundexception - 神祕
- 2. 神祕Android和notifyDataSetChanged()
- 3. Android中神祕的SQLiteBindOrColumnOutOfRangeException。
- 4. Android神祕:線程消失?
- 5. android神祕app加載
- 6. 神祕的MFSourceFilter
- 7. 神祕的Windows.UI.Xaml.Markup.XamlParseException
- 8. 神祕的verifier.dll
- 9. 神祕的getClobVal()
- 10. 神祕的Android(Java)上的ArrayList
- 11. PHP post.php神祕
- 12. Collapsing Flexbox神祕
- 13. 神祕InvalidOperationException
- 14. 神祕人物
- 15. 神祕空間
- 16. 神祕點
- 17. 神祕IndexError
- 18. 神祕間距
- 19. MySQLSyntaxErrorException神祕
- 20. 神祕int值
- 21. 神祕的錯誤
- 22. 神祕的錯誤
- 23. 神祕的錯誤
- 24. 神祕的表達
- 25. 神祕的變量
- 26. polyTypeOf是神祕的
- 27. 神祕的組合
- 28. Android神祕的空指針異常
- 29. 視圖改變類的Android神祕
- 30. putExtra()android
是的,你說得對。我不知道爲什麼我沒有選擇它。謝謝! – 2014-12-03 13:31:39
不用客氣 – Blackbelt 2014-12-03 13:32:51
那麼你應該接受答案。 – 2014-12-03 14:31:29