android清单控件,android常用控件开发详解.docx

本文详细介绍了Android中DatePicker和TimePicker控件的使用方法。这两个控件分别用于选取日期和时间,均继承自FrameLayout。设置监听器OnDateChangedListener和OnTimeChangedListener可以捕获用户的选择变化。示例代码展示了如何在布局文件中配置这两个控件,并在DpTpActivity类中获取和处理用户选择的日期与时间。
摘要由CSDN通过智能技术生成

Revised by Petrel at 2021

Revised by Petrel at 2021

Android常用控件开发详解

Android常用控件开发详解

控件之DatePicker、TimePicker探究

一、DatePicker继承自FrameLayout类,日期选择控件的主要功能是向用户提供包含年、月、日的日期数据并允许用户对其修改。如果要捕获用户修改日期选择控件中的数据事件,需要为DatePicker添加OnDateChangedListener监听器。

二、TimePicker也继承自FrameLayout类。时间选择控件向用户显示一天中的时间(可以为24小时,也可以为AM/PM制),并允许用户进行选择。如果要捕获用户修改时间数据的事件,便需要为TimePicker添加OnTimeChangedListener监听器

以下模拟日期与时间选择控件的用法

目录结构

布局文件

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center_horizontal"/>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:cursorVisible="false"

android:editable="false"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center_horizontal"/>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:cursorVisible="false"

android:editable="false"/>

复制代码

DpTpActivity类

package class DpTpActivity extends Activity {

private EditText dateEt=null;

private EditText timeEt=null;

@Override

public void onCreate(Bundle savedInstanceState) {

(savedInstanceState);

setContentView dateEt=(EditText)findViewById timeEt=(EditText)findViewById DatePicker datePicker=(DatePicker)findViewById TimePicker timePicker=(TimePicker)findViewById

Calendar calendar=();

int year=;

int monthOfYear=;

int dayOfMonth=;

(year, monthOfYear, dayOfMonth, new OnDateChangedListener(){

public void onDateChanged(DatePicker view, int year,

int monthOfYear, int dayOfMonth) {

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值