我正在尝试为我的应用制作一个简单的日期和时间选择器。这些是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
这就是我的看法:
所以我有两个问题:
答案 0 :(得分:1)
找到解决方案:
tp = (TimePicker)findViewById(R.id.timePicker1);
tp.setIs24HourView(true);
dp = (DatePicker)findViewById(R.id.datePicker1);
dp.setCalendarViewShown(false);