android之datepicker控制項的用法_Android

來源:互聯網
上載者:User

如下所示:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:orientation="vertical"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  ><TextView   android:id="@+id/textViewDateDisplay"   android:layout_width="wrap_content"   android:layout_height="wrap_content"   /><Button   android:id="@+id/btnPickDate"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:text="Change the date"  /></LinearLayout>
package com.example.mars_2200_datepicker;import java.util.Calendar;import android.support.v7.app.ActionBarActivity;import android.support.v7.app.ActionBar;import android.support.v4.app.Fragment;import android.app.DatePickerDialog;import android.app.Dialog;import android.os.Bundle;import android.view.LayoutInflater;import android.view.Menu;import android.view.MenuItem;import android.view.View;import android.view.ViewGroup;import android.widget.Button;import android.widget.DatePicker;import android.widget.TextView;import android.os.Build;public class MainActivity extends ActionBarActivity {  private TextView textViewDateDisplay;  private Button btnPickDate;  private int mYear;  private int mMonth;  private int mDay;  static final int DATE_DIALOG_ID = 0;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    textViewDateDisplay = (TextView) findViewById(R.id.textViewDateDisplay);    btnPickDate = (Button) findViewById(R.id.btnPickDate);    btnPickDate.setOnClickListener(new View.OnClickListener() {      public void onClick(View v) {        showDialog(DATE_DIALOG_ID);      }    });    final Calendar c = Calendar.getInstance();    mYear = c.get(Calendar.YEAR);    mMonth = c.get(Calendar.MONTH);    mDay = c.get(Calendar.DAY_OF_MONTH);    updateDisplay();  }  @Override  public boolean onCreateOptionsMenu(Menu menu) {    // Inflate the menu; this adds items to the action bar if it is present.    getMenuInflater().inflate(R.menu.main, menu);    return true;  }  @Override  public boolean onOptionsItemSelected(MenuItem item) {    // Handle action bar item clicks here. The action bar will    // automatically handle clicks on the Home/Up button, so long    // as you specify a parent activity in AndroidManifest.xml.    int id = item.getItemId();    if (id == R.id.action_settings) {      return true;    }    return super.onOptionsItemSelected(item);  }  /**   * A placeholder fragment containing a simple view.   */  public static class PlaceholderFragment extends Fragment {    public PlaceholderFragment() {    }    @Override    public View onCreateView(LayoutInflater inflater, ViewGroup container,        Bundle savedInstanceState) {      View rootView = inflater.inflate(R.layout.fragment_main, container,          false);      return rootView;    }  }  private void updateDisplay() {    textViewDateDisplay.setText(new StringBuilder().append(mYear).append("-")        .append(mMonth + 1).append("-").append(mDay).append(" "));  }  private DatePickerDialog.OnDateSetListener mDateSetListener = new DatePickerDialog.OnDateSetListener() {    public void onDateSet(DatePicker view, int year, int monthOfYear,        int dayOfMonth) {      mYear = year;      mMonth = monthOfYear;      mDay = dayOfMonth;      updateDisplay();    }  };  protected Dialog onCreateDialog(int id) {    switch (id) {    case DATE_DIALOG_ID:      return new DatePickerDialog(this, mDateSetListener, mYear, mMonth,          mDay);    }    return null;  }}

以上就是小編為大家帶來的android之datepicker控制項的用法的全部內容了,希望對大家有所協助,多多支援雲棲社區~

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.