该方法实现的调用系统Api,和android的版本,手机的牌子有关,实现不同的界面。不一定是入下图所示:

                                    Android之DatePickerDialog用法(日历的用法)_第1张图片

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

<?xml version="1.0" encoding="utf-8"?>

"http://schemas.android.com/apk/res/android"

    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    android:orientation="vertical" >

    

        android:id="@+id/text01"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="查询日期:"

        android:textSize="18sp"

        />

    

        android:id="@+id/tvDate"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_below="@id/text01"

        android:layout_alignLeft="@id/text01"

        />

    

        android:id="@+id/btnDatePicker"

        android:text="编辑"

        android:layout_toRightOf="@id/tvDate"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:onClick="show"

        android:layout_alignTop="@id/tvDate"

        />

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

package com.turboradio;

 

import java.text.SimpleDateFormat;

import java.util.Calendar;

 

import android.app.Activity;

import android.app.DatePickerDialog;

import android.os.Bundle;

import android.view.View;

import android.widget.DatePicker;

import android.widget.TextView;

 

public class DatePickerActivity extends Activity {

    private TextView tvDate;

    private Calendar cal = Calendar.getInstance();

    private DatePickerDialog.OnDateSetListener listener = new DatePickerDialog.OnDateSetListener() {

         

        @Override

        public void onDateSet(DatePicker view, int year, int monthOfYear,int dayOfMonth) {

            cal.set(Calendar.YEAR, year);

            cal.set(Calendar.MONTH, monthOfYear);

            cal.set(Calendar.DAY_OF_MONTH, dayOfMonth);

            updateDate();

        }

    };

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.date_picker_dialog);

        tvDate = (TextView)findViewById(R.id.tvDate);

         

    }

    public void show(View v){

        new DatePickerDialog(DatePickerActivity.this,listener,

                cal.get(Calendar.YEAR),

                cal.get(Calendar.MONTH),

                cal.get(Calendar.DAY_OF_MONTH)

                ).show();

    }

    private void updateDate(){

        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");

        tvDate.setText(simpleDateFormat.format(cal.getTime()));

    }

}

 

 

 

更多相关文章

  1. Android下图片或按钮等可拖动到任意位置的效果实现源码
  2. a标签下图片居中

随机推荐

  1. go语言如何判断变量是slice还是array
  2. ubuntu怎么安装配置go语言环境
  3. 两个Golang超大文件读取的方案
  4. go语言如何删除链表节点
  5. 详解Golang编译成DLL文件
  6. go语言如何升级版本
  7. go语言如何删除切片
  8. go语言环境如何配置
  9. 学go语言能干什么
  10. go语言开发工具有哪些