2014-01-20 89 views
1

我一直在嘗試使用DatePicker,但在它的UI渲染中存在一個奇怪的問題。DatePicker UI渲染問題

下面是用戶界面的屏幕截圖:

Below is the screen shot of UI

儘管我希望它象下面這樣:

Expected

有沒有人見過這個?我該如何解決它?

以下是XML佈局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
tools:context=".MainActivity" > 
    <DatePicker 
    android:id="@+id/dpResult" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" /> 
</RelativeLayout> 
+0

你可以發佈代碼, – Android

+0

發佈xml以上 – CommonMan

回答

1

如果你不希望完整的日曆視圖,只是想看看在日期選擇器的微調器,使用calendarViewShown屬性並將其設置爲false。如果DatePicker仍然呈現奇怪,可能表明您已在應用主題中設置了一些不必要的屬性。

+0

爲了擴大這一點,問題中的第二個圖像是舊式的DatePicker,我相信它是SDK級別<11。請注意[Simon Vig Therkildsen已經將新版本移植到了Android 2.2(https://github.com/SimonVT/android-datepicker)。 –