?日期选择器(DatePicker)和时间选择器(TimePicker)可以用于进行日期与时间的调整,当两者进行调整的时候也可以采用相关的监听器对其状态进行监听:
?日期监听器接口:android.widget.DatePicker.OnDateChangedListener;
?时间监听器接口:android.widget.TimePicker.OnTimeChangedListener;
-
<?xml version="1.0" encoding="utf-8"?>
-
<LinearLayout ? 定义线型布局管理器
-
xmlns:android=""
-
android:orientation="vertical" ? 所有组件垂直摆放
-
android:layout_width="fill_parent" ? 布局管理器宽度为屏幕宽度
-
android:layout_height="fill_parent"> ? 布局管理器高度为屏幕高度
-
<EditText ? 文本输入组件
-
android:id="@+id/input" ? 组件ID,程序中使用
-
android:layout_width="fill_parent“ ? 组件宽度为屏幕宽度
-
android:layout_height="wrap_content"/> ? 组件高度为文字高度
-
-
xmlns:android="http://schemas.android.com/apk/res/android"
-
android:orientation="horizontal" ? 所有组件水平摆放
-
android:layout_width="fill_parent" ? 布局管理器宽度为屏幕宽度
-
android:layout_height="fill_parent"> ? 布局管理器高度为屏幕高度
-
<DatePicker ? 日期选择器
-
android:id="@+id/date" ? 组件ID,程序中使用
-
android:layout_width="wrap_content”? 组件宽度为显示宽度
-
android:layout_height="wrap_content" />? 组件高度为显示高度
-
-
android:id="@+id/time" ? 组件ID,程序中使用
-
android:layout_width="wrap_content”? 组件宽度为显示宽度
-
android:layout_height="wrap_content" />? 组件高度为显示高度
-
</LinearLayout>
-
</LinearLayout>
020605_监听日期与时间的改变.ppt
阅读(1056) | 评论(0) | 转发(0) |