codecamp

Android UI教程 - Android DatePicker

Android UI教程 - Android DatePicker


您可以使用 DatePicker 控件选择日期。

例子

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/dateDefault"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

    <DatePicker
        android:id="@+id/datePicker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

以下代码使用Date设置DatePicker。

/*ww  w.j a  va 2 s. c o  m*/
package com.java2s.app;

import android.app.Activity;
import android.os.Bundle;
import android.widget.DatePicker;
import android.widget.TextView;

public class MainActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        TextView dateDefault = (TextView) findViewById(R.id.dateDefault);

        DatePicker dp = (DatePicker) this.findViewById(R.id.datePicker);
        // subtract 1 from December (12) to set it to December
        dp.init(2008, 11, 10, null);
        // The month, and just the month, is zero-based.
        dateDefault.setText("Date defaulted to " + (dp.getMonth() + 1) + "/" +
                dp.getDayOfMonth() + "/" + dp.getYear());

    }
}
null


注意

对于该月,内部值为零,这意味着1月是0和12月是11。

如果不为这些控件设置值,则为默认值值将是设备已知的当前日期和时间。

Android UI教程 - Android模拟锁
Android UI教程 - Android TimePicker
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }