在布局中实现日期选择器而不是对话框

时间:2014-07-30 12:01:37

标签: android android-layout datepicker

我需要在布局中使用日期选择器而不是Dialog。我搜索但只获得对话。有没有办法在布局设计中实现日期选择器?

1 个答案:

答案 0 :(得分:3)

请尝试这种方式,希望这有助于您解决问题。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">

    <DatePicker
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:endYear="2100"
        android:startYear="1900"
        android:calendarViewShown="false"/>

</LinearLayout>