我需要在布局中使用日期选择器而不是Dialog。我搜索但只获得对话。有没有办法在布局设计中实现日期选择器?
答案 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>