2011-03-23 54 views
1

是否有可能在iPhone应用程序中创建Android应用程序中的日期选择器。如何在Android应用程序中显示日期选择器

我看到一个日期选取器在我的手机应用程序有一个完成和取消按钮。通过滚动选择月份,年份和日期,我如何在我的Android应用程序中制作这样的一个。我如何在我的Android应用程序中制作这样的一个应用程序:

回答

4
+0

与这些信息的唯一问题是它没有出现在谷歌的教程展示如何选定的日期,并显示它在textview或任何其他方式。 – 2015-12-22 19:04:37

2

你的XML布局

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:orientation="vertical"> 
<TextView android:id="@+id/dateDisplay" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text=""/> 
<Button android:id="@+id/pickDate" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Date Picker"/> 
</LinearLayout> 

你的活动课

public class pickerdate extends Activity { 
/** Called when the activity is first created. */ 
    private TextView mDateDisplay; 
    private Button mPickDate; 
    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.main); 


     mDateDisplay = (TextView) findViewById(R.id.dateDisplay); 
     mPickDate = (Button) findViewById(R.id.pickDate); 


     mPickDate.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(); 
    } 
    private void updateDisplay() { 
     mDateDisplay.setText(
      new StringBuilder() 
        // Month is 0 based so add 1 
        .append(mMonth + 1).append("-") 
        .append(mDay).append("-") 
        .append(mYear).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(); 
      } 
     }; 
     @Override 
     protected Dialog onCreateDialog(int id) { 
      switch (id) { 
      case DATE_DIALOG_ID: 
       return new DatePickerDialog(this, 
          mDateSetListener, 
          mYear, mMonth, mDay); 
      } 
      return null; 
     } 
    } 
相关问题