Android之日期及时间选择对话框用法实例分析

 更新时间:2015年09月14日 10:48:16   作者:Ruthless  
这篇文章主要介绍了Android之日期及时间选择对话框用法,以实例形式较为详细的分析了Android创建日期及时间选择对话框的实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了Android之日期及时间选择对话框用法。分享给大家供大家参考。具体如下:

清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.ljq.dialog"
 android:versionCode="1"
 android:versionName="1.0">
 <application android:icon="@drawable/icon" android:label="@string/app_name">
 <activity android:name=".AlertDialog"
   android:label="@string/app_name">
  <intent-filter>
  <action android:name="android.intent.action.MAIN" />
  <category android:name="android.intent.category.LAUNCHER" />
  </intent-filter>
 </activity>
 </application>
 <uses-sdk android:minSdkVersion="7" />
 <uses-permission android:name="android.permission.WRITE_CALENDAR" />
</manifest> 

main.xml布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
 android:layout_width="fill_parent" android:layout_height="fill_parent"
 android:orientation="vertical"
 xmlns:android="http://schemas.android.com/apk/res/android">
 <EditText android:id="@+id/et" 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content" 
 android:editable="false"
 android:cursorVisible="false" />
 <Button android:text="日期对话框" 
 android:id="@+id/dateBtn"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content" />
 <Button android:text="时间对话框" 
 android:id="@+id/timeBtn"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content" />
 <DigitalClock 
 android:text="@+id/digitalClock"
 android:textSize="20dip" 
 android:gravity="center"
 android:id="@+id/DigitalClock01" 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content" />
 <AnalogClock 
 android:id="@+id/analogClock"
 android:gravity="center" 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content" />
</LinearLayout>

AlertActivity类:

package com.ljq.dialog;
import java.util.Calendar;
import android.app.Activity;
import android.app.DatePickerDialog;
import android.app.Dialog;
import android.app.TimePickerDialog;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.DatePicker;
import android.widget.EditText;
import android.widget.TimePicker;
public class AlertDialog extends Activity {
 private Button dateBtn = null;
 private Button timeBtn = null;
 private EditText et=null;
 private final static int DATE_DIALOG = 0;
 private final static int TIME_DIALOG = 1;
 private Calendar c = null;
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.main);
 et=(EditText)findViewById(R.id.et);
 dateBtn = (Button) findViewById(R.id.dateBtn);
 timeBtn = (Button) findViewById(R.id.timeBtn);
 dateBtn.setOnClickListener(new View.OnClickListener(){
  public void onClick(View v) {
  showDialog(DATE_DIALOG);
  }
 });
 timeBtn.setOnClickListener(new View.OnClickListener(){
  public void onClick(View v) {
  showDialog(TIME_DIALOG);
  }
 });
 }
 /**
 * 创建日期及时间选择对话框
 */
 @Override
 protected Dialog onCreateDialog(int id) {
 Dialog dialog = null;
 switch (id) {
 case DATE_DIALOG:
  c = Calendar.getInstance();
  dialog = new DatePickerDialog(
  this,
  new DatePickerDialog.OnDateSetListener() {
   public void onDateSet(DatePicker dp, int year,int month, int dayOfMonth) {
   et.setText("您选择了:" + year + "年" + (month+1) + "月" + dayOfMonth + "日");
   }
  }, 
  c.get(Calendar.YEAR), // 传入年份
  c.get(Calendar.MONTH), // 传入月份
  c.get(Calendar.DAY_OF_MONTH) // 传入天数
  );
  break;
 case TIME_DIALOG:
  c=Calendar.getInstance();
  dialog=new TimePickerDialog(
  this, 
  new TimePickerDialog.OnTimeSetListener(){
   public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
   et.setText("您选择了:"+hourOfDay+"时"+minute+"分");
   }
  },
  c.get(Calendar.HOUR_OF_DAY),
  c.get(Calendar.MINUTE),
  false
  );
  break;
 }
 return dialog;
 }
}

运行结果:

希望本文所述对大家的Android程序设计有所帮助。

相关文章

  • Android实现ListView左右滑动删除和编辑

    Android实现ListView左右滑动删除和编辑

    这篇文章主要为大家详细介绍了Android实现ListView左右滑动删除和编辑的相关资料,感兴趣的小伙伴们可以参考一下
    2016-05-05
  • 7种形式的Android Dialog使用实例

    7种形式的Android Dialog使用实例

    这篇文章主要介绍了7种形式的Android Dialog使用实例,分别向大家介绍这7种Android Dialog对话框的使用方法,感兴趣的小伙伴们可以参考一下
    2016-01-01
  • Android布局之GridLayout网格布局

    Android布局之GridLayout网格布局

    网格布局标签是GridLayout。这个布局是android4.0新增的布局。这个布局只有4.0之后的版本才能使用。本文给大家介绍Android布局之GridLayout网格布局相关知识,感兴趣的朋友一起学习吧
    2015-12-12
  • Android音视频开发Media FrameWork框架源码解析

    Android音视频开发Media FrameWork框架源码解析

    这篇文章主要为大家介绍了Android音视频开发Media FrameWork框架源码解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-12-12
  • Android进阶篇-自定义图片伸缩控件具体实例

    Android进阶篇-自定义图片伸缩控件具体实例

    这篇文章介绍了Android自定义图片伸缩控件具体实例,有需要的朋友可以参考一下
    2013-11-11
  • Android自定义View实现弹性小球效果

    Android自定义View实现弹性小球效果

    前段时间看到一个功能,是一个小球沿着固定轨迹弹动的效果,那么这篇文章小编给大家分享在Android中如何自定义View来实现弹性小球的效果,有需要的可以参考借鉴。
    2016-09-09
  • Android连接MySQL数据库详细教程

    Android连接MySQL数据库详细教程

    在Android应用程序中连接 MySQL 数据库可以帮助开发人员实现更丰富的数据管理功能,本教程将介绍如何在Android应用程序中使用低版本的MySQL Connector/J驱动程序来连接MySQL数据库,需要的朋友可以参考下
    2023-05-05
  • Android SearchView搜索控件使用方法详解

    Android SearchView搜索控件使用方法详解

    这篇文章主要为大家详细介绍了Android SearchView搜索控件的使用方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-04-04
  • Android 基于百度语音的语音交互功能(推荐)

    Android 基于百度语音的语音交互功能(推荐)

    最近在开发android的项目,在项目需求中要用到语音唤醒功能。之前都没接触过,今天小编就给大家分享android基于百度语音的语音交互功能,非常不错,感兴趣的朋友一起看看吧
    2016-11-11
  • Android编程之客户端通过socket与服务器通信的方法

    Android编程之客户端通过socket与服务器通信的方法

    这篇文章主要介绍了Android编程之客户端通过socket与服务器通信的方法,结合实例形式分析了Android基于socket通讯的具体步骤与相关使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-11-11

最新评论