android datepicker timepicker簡單用法

來源:互聯網
上載者:User

標籤:

1.

2. xml布局檔案

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:background="@color/White"     android:orientation="vertical">    <RelativeLayout        android:id="@+id/titlebar"        android:layout_height="@dimen/titlebar_height"        android:layout_width="match_parent"        android:background="@color/vi_color"        >        <ImageView             android:id="@+id/arrowLeftImg"             android:layout_width="wrap_content"             android:layout_height="wrap_content"             android:layout_centerVertical="true"             android:layout_marginLeft="5dp"             android:src="@drawable/icon_arrow_left_white"              />        <TextView              android:id = "@+id/title"             android:layout_width="wrap_content"             android:layout_height="wrap_content"             android:textColor="@color/White"             android:textSize="@dimen/titlebar_title_text_size"             android:layout_centerVertical="true"             android:layout_centerHorizontal="true"             android:layout_centerInParent="true"             android:text="@string/choose_time"/>    </RelativeLayout>    <DatePicker         android:id="@+id/datePicker"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:calendarViewShown="false"        android:layout_gravity="center"        android:contentDescription="設定時間"/>    <!-- <TimePicker         android:id="@+id/timePicker"        android:layout_width="wrap_content"        android:layout_height="wrap_content"                android:layout_marginTop="10dp"/> -->    <LinearLayout         android:layout_width="match_parent"         android:layout_height="120dp"         android:orientation="vertical"         android:layout_weight="1">          <TextView               android:layout_width="match_parent"               android:id = "@+id/tvTimeShow"               android:layout_height="0dp"               android:layout_weight="1"               android:gravity="center"               android:layout_margin="10dp"/>          <Button               android:layout_width="match_parent"              android:layout_height="wrap_content"              android:id = "@+id/btnCommit"              android:text="@string/ok"              android:background="@drawable/sel_publish_button"/>     </LinearLayout></LinearLayout>

3. java 代碼

datePicker = (DatePicker) findViewById(R.id.datePicker);        mBtnCommit = (Button) findViewById(R.id.btnCommit);        mTvTimeShow = (TextView) findViewById(R.id.tvTimeShow);calendar = Calendar.getInstance();         dateFormat = new SimpleDateFormat("yyyy年MM月dd日");        mTvTimeShow.setText("服務起始日期:  "+dateFormat.format(calendar.getTime()));        datePicker.init(calendar.get(calendar.YEAR), calendar.get(calendar.MONTH), calendar.get(calendar.DAY_OF_MONTH),                 new OnDateChangedListener(){                    @Override                    public void onDateChanged(DatePicker view, int year,                            int month, int day) {                        calendar.set(year, month, day);                                                mTvTimeShow.setText("服務起始日期:  "+dateFormat.format(calendar.getTime()));                    }                    });        /*timePicker.setIs24HourView(false);        timePicker.setOnTimeChangedListener(new OnTimeChangedListener(){            @Override            public void onTimeChanged(TimePicker view, int hour, int minute) {                //calendar.set(year, month, day, hourOfDay, minute);            }                    });*/

 

android datepicker timepicker簡單用法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.