2011-10-12 73 views
0

我正在製作一個Android應用程序,我需要顯示日曆..我搜索了很多,但沒有得到任何有用的結果。 我也下載了日曆的項目從以下鏈接:在Android應用程序中顯示日曆

http://code.google.com/p/android-calendar-view/downloads/list 

但它也沒有工作INFACT給予例外。 CAn任何人都可以幫助我如何顯示日曆。 任何幫助將大大appriciated。 期待解決方案。 感謝

+0

你想要什麼顯示日曆? – milind

+0

[日曆庫的Android應用程序]的可能重複(http://stackoverflow.com/questions/6974035/calendar-library-for-android-app) –

+0

並且有很多問題已經存在的同一主題。 http://stackoverflow.com/search?page=2&tab=relevance&q=android%20calendar –

回答

0

的DatePicker其非標準的小部件,我不認爲這是真正的問題

<DatePicker 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" > 

... 
// Required Java init code: 
DatePicker dp = 
    (DatePicker)this.findViewById(R.id.widget27); 

// for example init to 1/27/2008, no callback 
dp.init(2008, 0, 27, Calendar.SUNDAY, null); 

看到this它可以對你有所幫助。

相關問題