1. MainActivity.java  
  2.     
  3. public class MainActivity extends Activity  
  4. {  
  5.     @Override  
  6.     public void onCreate(Bundle savedInstanceState)  
  7.     {  
  8.         super.onCreate(savedInstanceState);  
  9.         setContentView(R.layout.main);  
  10.         Button dateBn = (Button)findViewById(R.id.dateBn);  
  11.         Button timeBn = (Button)findViewById(R.id.timeBn);  
  12.         //为"设置日期"按钮绑定监听器  
  13.         dateBn.setOnClickListener(new OnClickListener()  
  14.         {  
  15.             @Override  
  16.             public void onClick(View source)  
  17.             {  
  18.                 Calendar c = Calendar.getInstance();  
  19.                 // 直接创建一个DatePickerDialog对话框实例,并将它显示出来  
  20.                 new DatePickerDialog(MainActivity.this,  
  21.                     // 绑定监听器  
  22.                     new DatePickerDialog.OnDateSetListener()  
  23.                     {  
  24.                         @Override  
  25.                         public void onDateSet(DatePicker dp, int year,  
  26.                             int month, int dayOfMonth)  
  27.                         {  
  28.                             EditText show = (EditText) findViewById(R.id.show);  
  29.                             show.setText("您选择了:" + year + "年" + (month + 1)  
  30.                                 + "月" + dayOfMonth + "日");  
  31.                         }  
  32.                     }  
  33.                     //设置初始日期  
  34.                     , c.get(Calendar.YEAR)  
  35.                     , c.get(Calendar.MONTH)  
  36.                     , c.get(Calendar.DAY_OF_MONTH)).show();  
  37.             }  
  38.         });  
  39.         //为"设置时间"按钮绑定监听器  
  40.         timeBn.setOnClickListener(new OnClickListener()  
  41.         {  
  42.             @Override  
  43.             public void onClick(View source)  
  44.             {  
  45.                 Calendar c = Calendar.getInstance();  
  46.                 // 创建一个TimePickerDialog实例,并把它显示出来  
  47.                 new TimePickerDialog(MainActivity.this,  
  48.                     // 绑定监听器  
  49.                     new TimePickerDialog.OnTimeSetListener()  
  50.                     {  
  51.                         @Override  
  52.                         public void onTimeSet(TimePicker tp, int hourOfDay,  
  53.                             int minute)  
  54.                         {  
  55.                             EditText show = (EditText) findViewById(R.id.show);  
  56.                             show.setText("您选择了:" + hourOfDay + "时"  
  57.                                 + minute + "分");  
  58.                         }  
  59.                     }  
  60.                     //设置初始时间  
  61.                     , c.get(Calendar.HOUR_OF_DAY)  
  62.                     , c.get(Calendar.MINUTE)  
  63. 小时制  
  64.                     , true).show();  
  65.             }  
  66.         });  
  67.     }  
  68. }  
  69.     
  70. XML文件  
  71.     
  72. <?xml version="1.0" encoding="utf-8"?>  
  73. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  74.     android:orientation="vertical"  
  75.     android:layout_width="match_parent"  
  76.     android:layout_height="match_parent"  
  77.     android:gravity="center">  
  78. <EditText   
  79.     android:id="@+id/show"  
  80.     android:layout_width="match_parent"   
  81.     android:layout_height="wrap_content"   
  82.     android:editable="false"  
  83.     />  
  84. <LinearLayout   
  85.     android:orientation="horizontal"  
  86.     android:layout_width="match_parent"  
  87.     android:layout_height="wrap_content"  
  88.     android:gravity="center"  
  89.     >  
  90. <Button  
  91.     android:id="@+id/dateBn"  
  92.     android:layout_width="wrap_content"  
  93.     android:layout_height="wrap_content"  
  94.     android:text="设置日期"  
  95.     />  
  96. <Button  
  97.     android:id="@+id/timeBn"  
  98.     android:layout_width="wrap_content"  
  99.     android:layout_height="wrap_content"  
  100.     android:text="设置时间"  
  101.     />     
  102. </LinearLayout>  
  103. </LinearLayout>  

效果

DatePickerDialog TimePickerDialog的更多相关文章

  1. android 开发DatePickerDialog/TimePickerDialog对话框的实现

    AndroidAPI提供了Dialog对话框控件,DatePickerDialog/TimePickerDialog均是AlertDialog的子类,通过DatePickerDialog/TimePi ...

  2. Android DatePickerDialog TimepickerDialog

    package com.example.myact5; import java.util.Calendar; import android.app.DatePickerDialog; import a ...

  3. 2.5.5 使用DatePickerDialog, TimePickerDialog

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout ...

  4. android入门 — ProgressDialog/DatePickerDialog/TimePickerDialog

    这三个Dialog都是AlertDialog的子类. ①DatePickerDialog 1.创建DatePickerDialog的实例: 2.通过Calendar类获得系统时间: 3.通过DateP ...

  5. android中提示&对话框----ProgressDialog&DatePickerDialog &TimePickerDialog&PopupWindow

    ProgressDialog(精度条对话框): 1.直接调用ProgressDialog提供的静态方法show()显示 2.创建ProgressDialog,再设置对话框的参数,最后show()出来 ...

  6. android内部培训视频_第三节(3)_常用控件(ViewPager、日期时间相关、ListView)

    第三节(2):常用控件之ViewPager.日期时间相关.ListView  一.ViewPager 实例:结合PagerAdapter滑动切换图片  二.日期时间相关:AnalogClock\Dig ...

  7. 第32讲 UI组件之 时间日期控件DatePicker和TimePicker

    第32讲 UI组件之 时间日期控件DatePicker和TimePicker 在Android中,时间日期控件相对来说还是比较丰富的.其中, DatePicker用来实现日期输入设置,    Time ...

  8. android学习笔记19——对话框(DatePickerDialog、TimePickerDialog)

    DatePickerDialog.TimePickerDialog ==> DatePickerDialog.TimePickerDialog功能.用法都比较简单,操作步骤: 1.通过new关键 ...

  9. 完全参照系统自带的DatePickerDialog、TimePickerDialog的源代码仿写的DateTimePickerDialog

    完全参照系统自带的DatePickerDialog.TimePickerDialog的源代码仿写的DateTimePickerDialog.具有同时选择日期.时间的功能.在2.2.2.3平台,显示的效 ...

随机推荐

  1. Mysql 2条记录 差值计算

    1 表结构 2:  其实 是2个相同的 表根据rownum= rownum-1 来计算,所以先了解单个表的查询 附上SQL: #查询出1天的数据升序 ) as rownum, info.equipme ...

  2. Axure8 实现移动端页面上下滑动效果

    目前,很多Axure新人都在问如何实现界面上下滑动效果,网上相关的教程也不少,各有各的方法,但是很少有教程对滑动界限设置做出比较详细的说明,其实在工作过程中,个人发现练好Axure是很有意提升逼格的, ...

  3. mongodb first

    use [database] 使用数据库,新增文档后,数据库被自动创建 show dbs 显示所有数据库 db.[document].insert() 插入数据库 例:db.persons.inser ...

  4. powerdns

    powerdns http://bbs.51cto.com/thread-880297-1.html https://blog.csdn.net/kepa520/article/details/791 ...

  5. dubbo-admin 管理平台

    一.前言 dubbo的使用,其实只需要有注册中心,消费者,提供者这三个就可以使用了,但是并不能看到有哪些消费者和提供者,为了更好的调试,发现问题,解决问题,因此引入dubbo-admin.通过dubb ...

  6. Layouts

    [Layouts] Each layout file must contain exactly one root element, which must be a View or ViewGroup ...

  7. ubuntu下搭建testlink

    环境配置: 1. 安装mysql 教程网上找 2. 安装apache sudo apt-get install apache2 重启apache服务 sudo /etc/init.d/apache2 ...

  8. ASP.NET中的URL编码解码(转)

    在对URL进行编码时,该用哪一个?这两都使用上有什么区别吗?测试: string file="文件上(传)篇.doc";string Server_UrlEncode=Server ...

  9. 使用jQuery可能出现的错误

  10. 4. Median of Two Sorted Arrays(Array; Divide-and-Conquer)

    There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two ...