0

我正在尝试为我的应用程序制作一个简单的日期和时间选择器。这些是 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

这就是我的看法:

在此处输入图像描述

所以我有两个问题:

  1. 是否有可能不显示 AM/PM 按钮,只显示 24 小时格式时钟?
  2. 为什么我会这样看日历?我怎样才能让它正常显示日/月/年?
4

1 回答 1

1

找到了解决方案:

tp = (TimePicker)findViewById(R.id.timePicker1);
tp.setIs24HourView(true);
dp = (DatePicker)findViewById(R.id.datePicker1);
dp.setCalendarViewShown(false);
于 2013-09-29T16:55:14.797 回答