Android提供了日期和時間的widget。
日期widget
DatePicker和DatePickerDialog,DatePickerDialog是裝載DatePicker的一個簡單的容器,。分別有一個觸發方法OnDateChangedListener( ) 和OnDateSetListener( )。
在這個例子中,我們設定了兩個button和一個textView,當按鍵彈出DatePickDialog。
步驟1:一些有關時間的java函數
- 獲得目前時間的執行個體:Calendar calendar = Calendar.getInstance();
- 獲得目前時間:calendar.get(Calendar.YEAR),通過設定參數可獲得年,月,日,時,分,秒
- 設定時間:calendar.set(Calendar.YEAR,2011),可設定年,月,日,時,分,秒
- 用String給出當前的時間資訊,可以使用Java的SimpleDateFormat,如下處理:
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
//可以設定不同的類型
通過sdf.format(calendar.getTime()就可以獲得相關的info string,可供出來
步驟2:設定Android XML檔案並編寫有關的代碼(略去)
步驟3:彈出日期Dialog,並設定Set的觸發回呼函數
new DatePickerDialog(
/*參數1:context,在我的例子是內部類中調用,所有需指明this是那個this*/
Chapter9Test1.this,
/*參數2:設定Set日期的回呼函數*/ dateSet,
/*參數3,4,5:設定的年月日*/ calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH), calendar.get(Calendar.DATE)).show();
最後一個show()表示將dialog顯示出來。Set的回呼函數,是OnDateSetListener(),如下:
DatePickerDialog.OnDateSetListener dateSet = new DatePickerDialog.OnDateSetListener() {
public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
calendar.set(Calendar.YEAR, year);
calendar.set(Calendar.MONTH, monthOfYear);
calendar.set(Calendar.DATE, dayOfMonth);
}
};
時間widget
日期的非常相似,TimePickerDialog(可以通過OnTimeSetListener設定回呼函數)是裝載TimePicker(可通過OnTimeChangedListener設定回呼函數)的簡單Dialog的容器。
彈出Dialog,可以照著畫瓢,採用如下方式。同樣的第一個參數是context,第二個參數是回呼函數,第三和第四是時和分,第5個參數表示是否24小時制的顯示方式。
new TimePickerDialog(Chapter9Test1.this, timeSet, calendar.get(Calendar.HOUR_OF_DAY), calendar.get(Calendar.MINUTE), true).show();
對於回呼函數timeSet,可通過如下設定:
TimePickerDialog.OnTimeSetListener timeSet = new TimePickerDialog.OnTimeSetListener() {
@Override
public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
calendar.set(Calendar.HOUR_OF_DAY, hourOfDay);
calendar.set(Calendar.MINUTE,minute);
}
};
在Activity中調起Dialog的其他方式
在上面的例子中,建立了xxxPickerDialog,通過show()方法將它們調起來。在Android的Tutorial的例子在,可以重寫Acitivity的onCreateDialog方法來實現,下面以調起日期的Dialog為例子。
public class Chapter9Tutorial1 extends Activity{
... ...
//步驟1:給出我們需要顯示的不同Dialog的ID,以便能判斷顯示哪個Dialog
static final int DATE_DIALOG_ID = 0;
//步驟2:通過showDialog(Dialog ID)調起相應的Dialog
protected void someMethod(.... ) {
... ...
showDialog(DATE_DIALOG_ID);
... ...
}
//重寫Acitivity的方法onCreateDialog(int id),該方法告訴showDialog(),要顯示哪個Dialog,給出Dialog的對象
protected Dialog onCreateDialog(int id) {
switch(id){
case DATE_DIALOG_ID:
return new DatePickerDialog(this,mDateSetlisten,mYear,mMonth,mDay);
... ...
}
return super.onCreateDialog(id);
//或者直接return null;
}
}
類比時鐘和數字時鐘
前面的例子,我們通常要設定某個日期或者時間,如果我們只是想向使用者顯示當前的時間,可以採用類比始終和數字時鐘。,下面是相關的Android XML檔案:
<RelativeLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<AnalogClock android:id="@+id/c91_analog"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentTop="true" />
<DigitalClock android:id="@+id/c91_digital"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@id/c91_analog" />
</RelativeLayout>
計時器Chronometer
Android提供一個計時器Chronometer,這個widget的類似DiagitalClock,在XML中通過使用<Chronometer ... />來定義。下面是來自Android reference的一個例子。最上面的就是Chronometer widget。
有下面幾個關鍵的控制函數:
- start():開始即時更新計時器
- stop():停止即時更新計時器,注意,實際上計時器還在走
- setbase():設定初始的基準時間,如果設定目前時間,setBase(SystemClock.elapsedRealtime()),即重設計時器,計時器歸零
- format():設定顯示格式,預設為MM:SS或者H:MM:SS,如果我們希望顯示的內容是"我的計時器 00:00",可以使用format("我的計時器 %s"),第一個%s,表示預設的時間格式。如果清空格式,採用預設的,看通過format(null)來實現。
等級羽毛球
周六時單位網路公布了今年羽毛球比賽的賽時,和往常並一樣,這次取消了女單,增加了雙打,不是男雙,不是女雙,不是混雙,是權雙。必須是三級部門領導以上,必須其中一人是二級部門領導,性別不限。也就是現在打球人是分三六九等,至於“地位”相當的人,只有資格站在同一球場上。好像印度的種姓也在搞類似的東西。人群中存在分工不同,有些人能力強些,責任大寫,得到的報酬也不同,但是人群中沒有等級,生不帶來死不帶去的。在球場上,總是場外的事情太多,就像足球。
相關連結:我的Andriod開發相關文章