我正在尝试为我的应用程序制作一个简单的日期和时间选择器。这些是 XML 文件:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TimePicker
android:id="@+id/timePicker1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<DatePicker
android:id="@+id/datePicker1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:spinnersShown="true"
/>
...Rest of the code
这就是我的看法:
所以我有两个问题:
- 是否有可能不显示 AM/PM 按钮,只显示 24 小时格式时钟?
- 为什么我会这样看日历?我怎样才能让它正常显示日/月/年?