時間對話框的使用 一、簡介 二、方法 1)顯示TimePickerDialog方法 1、新建TimePickerDialog對象 TimePickerDialog timeDialog=new TimePickerDialog(this, new MyTimeSetListener(), 13, 3 ...
時間對話框的使用
一、簡介
二、方法
1)顯示TimePickerDialog方法
1、新建TimePickerDialog對象
TimePickerDialog timeDialog=new TimePickerDialog(this, new MyTimeSetListener(), 13, 30, true);
各個參數的含義如下:
說明一下:
第一個參數context就是這個控制項顯示的父控制項是什麼,也就是這個控制項顯示在哪個控制項裡面
第二個參數callback就是這個控制項出現後,控制項上面會有一個set或者done按鈕,你點這個按鈕之後調用的監聽,
所以在這裡我寫的是一個監聽,new MyTimeSetListener(),這個監聽的來源如下:
public class MyTimeSetListener implements OnTimeSetListener{裡面是重寫父類onTimeSet方法}
也就是實現的OnTimeSetListener的介面
其實你也可以直接用OnTimeSetListener的對象,代碼如下:
public OnTimeSetListener timeSetListener=new OnTimeSetListener(){裡面是重寫父類onTimeSet方法}
2、調用TimePickerDialog對象的show()方法
timeDialog.show();
這個show方法不寫,屏幕是沒有反應的
2)顯示DatePickerDialog方法
方法和TimePickerDialog幾乎一模一樣,連方法說明都無比類似
如果不懂,直接看代碼實例
三、代碼實例
效果圖:
點解TimePickerDialog後
點擊done後
點擊“顯示DatePickerDialog”後
點擊Done後
代碼:
fry.Activity01
1 package fry; 2 3 import com.example.Ex25ClockDemo.R; 4 5 import android.app.Activity; 6 import android.app.DatePickerDialog; 7 import android.app.DatePickerDialog.OnDateSetListener; 8 import android.app.TimePickerDialog; 9 import android.app.TimePickerDialog.OnTimeSetListener; 10 import android.os.Bundle; 11 import android.text.method.DateTimeKeyListener; 12 import android.view.View; 13 import android.view.View.OnClickListener; 14 import android.widget.Button; 15 import android.widget.DatePicker; 16 import android.widget.TimePicker; 17 import android.widget.Toast; 18 19 public class Activity01 extends Activity implements OnClickListener { 20 private Button btn_showTime; 21 private Button btn_showDate; 22 private TimePickerDialog timeDialog; 23 private DatePickerDialog dateDialog; 24 25 @Override 26 protected void onCreate(Bundle savedInstanceState) { 27 // TODO Auto-generated method stub 28 super.onCreate(savedInstanceState); 29 setContentView(R.layout.activity01); 30 btn_showTime = (Button) findViewById(R.id.btn_showTime); 31 btn_showDate = (Button) findViewById(R.id.btn_showDate); 32 33 btn_showTime.setOnClickListener(this); 34 btn_showDate.setOnClickListener(this); 35 } 36 37 /* 38 * 1)顯示TimePickerDialog方法 39 * 1、新建TimePickerDialog對象 40 * 2、調用TimePickerDialog對象的show()方法 41 * 42 * (non-Javadoc) 43 * @see android.view.View.OnClickListener#onClick(android.view.View) 44 */ 45 @Override 46 public void onClick(View v) { 47 // TODO Auto-generated method stub 48 switch (v.getId()) { 49 case R.id.btn_showTime: 50 if(timeDialog==null) 51 //第二個參數是點設置之後回調的函數 52 timeDialog=new TimePickerDialog(this, new MyTimeSetListener(), 13, 30, true); 53 timeDialog.show(); 54 break; 55 case R.id.btn_showDate: 56 if(dateDialog==null) 57 dateDialog=new DatePickerDialog(this, new MyDateSetListener(), 2017, 9-1, 9); 58 //這個show方法不寫,屏幕是沒有反應的 59 dateDialog.show(); 60 break; 61 62 default: 63 break; 64 } 65 } 66 //用內部類實現參數 67 //設置時間的監聽器 68 public class MyTimeSetListener implements OnTimeSetListener{ 69 70 @Override 71 public void onTimeSet(TimePicker view, int hourOfDay, int minute) { 72 // TODO Auto-generated method stub 73 Toast.makeText(Activity01.this, "hourOfDay:"+hourOfDay+" minute"+minute,Toast.LENGTH_SHORT).show(); 74 } 75 }; 76 77 public class MyDateSetListener implements OnDateSetListener{ 78 79 @Override 80 public void onDateSet(DatePicker view, int year, int monthOfYear, 81 int dayOfMonth) { 82 // TODO Auto-generated method stub 83 //這句話更像是為了測試什麼時候調用了這個函數 84 Toast.makeText(Activity01.this, "year:"+year+" monthOfYear"+(monthOfYear+1)+" dayOfMonth"+dayOfMonth,Toast.LENGTH_SHORT).show(); 85 } 86 87 } 88 89 }
/Ex25ClockDemo/res/layout/activity01.xml
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical" > 6 7 <AnalogClock 8 android:layout_width="wrap_content" 9 android:layout_height="wrap_content" 10 android:dial="@drawable/biaopan" 11 /> 12 13 <DigitalClock 14 android:layout_width="wrap_content" 15 android:layout_height="wrap_content" 16 /> 17 18 <Button 19 android:id="@+id/btn_showTime" 20 android:layout_width="wrap_content" 21 android:layout_height="wrap_content" 22 android:text="顯示TimePickerDialog" 23 /> 24 25 <Button 26 android:id="@+id/btn_showDate" 27 android:layout_width="wrap_content" 28 android:layout_height="wrap_content" 29 android:text="顯示DatePickerDialog" 30 /> 31 32 </LinearLayout>
四、註意點
1、 AnalogClock中設置表盤屬性,指針當然也可以自己設置
<AnalogClock android:dial="@drawable/biaopan"/>
時針設置:android:hand_hour
分針設置:android:hand_minute
2、TimePickerDialog的初始化方法需要特別註意一下,尤其是各個參數的說明
timeDialog=new TimePickerDialog(this, new MyTimeSetListener(), 13, 30, true);
3、一定不要忘記新建的TimePickerDialog對象一定要調用show()方法,要不根本顯示不出來
timeDialog.show();
其實幾乎所有這種顯示在另外一個控制項上的控制項要想顯示,都必須調用show()方法,例如:
TimePickerDialog、DatePickerDialog、Toast
4、如果想知道TimePickerDialog的初始化方法中的第二個參數new MyTimeSetListener()何時使用的時候,
其實用log或Toast測試一下就好
public class MyTimeSetListener implements OnTimeSetListener{
public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
Toast.makeText(Activity01.this, "hourOfDay:"+hourOfDay+" minute"+minute,Toast.LENGTH_SHORT).show();
}
}
五、易錯點
1、一定不要忘記新建的TimePickerDialog對象一定要調用show()方法,要不根本顯示不出來
timeDialog.show();
這個很容易忘記,很容易錯
其實幾乎所有這種顯示在另外一個控制項上的控制項要想顯示,都必須調用show()方法,例如:
TimePickerDialog、DatePickerDialog、Toast