比如我現在有這麼一個樣式的DatePicker,如圖:
這個樣式太原始了,感覺不是特别好看,可以添加主題樣式來修改,比如這樣的:
我這裡是把DatePicker裝入對話框裡面的,貼下代碼,
<DatePicker
android:id="@+id/date_picker"
android:theme="@android:style/Theme.Holo.Light.NoActionBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dip" />
android:theme="@android:style/Theme.Holo.Light.NoActionBar"
這句是關鍵,如果想要其他系統樣式,這裡也可以修改的。