0

我想创建一个文本编辑字段,用户只输入日期(没有时间)。日期将存储在MY SQL. 用最少的验证来做到这一点的最佳方法是什么?是否有一个内置的日期文本字段以保持正确的格式?

我有这个:

public static void AddEditTextDate(Context context, LinearLayout linearlayout, String text, int id) {
    EditText edittext = new EditText(context);
    edittext.setInputType(InputType.TYPE_DATETIME_VARIATION_DATE);
    edittext.setText(text);
    edittext.setId(id);
    LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT);
    edittext.setLayoutParams(params);
    linearlayout.addView(edittext);
}

但是当我尝试输入它时,它看起来就像一个普通的键盘。我希望它默认进入数字键盘或其他东西......

编辑:它需要与android 2.1+(即v7)一起使用

有人知道吗?

谢谢

4

1 回答 1

2

你说Whats the best way to do this with the least amount of validation? Is there like a built in textfield for dates that keeps it in the proper format?

我想到了一种方法,使用它您可能不需要检查用户输入的日期格式的任何验证。您可以在单击框时调用DatePickerDialog 。EditText然后用户可以使用它来选择日期。用户选择日期后,您可以使用所选日期更新您的 EditText。通过这种方式,您可以减少验证输入日期格式的工作量,并且用户可以轻松直观地选择日期。你可能是这样的:

Calendar myCalendar = Calendar.getInstance();
DatePickerDialog.OnDateSetListener date = new DatePickerDialog.OnDateSetListener() {

    @Override
    public void onDateSet(DatePicker view, int year, int monthOfYear,
            int dayOfMonth) {
        myCalendar.set(Calendar.YEAR, year);
        myCalendar.set(Calendar.MONTH, monthOfYear);
        myCalendar.set(Calendar.DAY_OF_MONTH, dayOfMonth);
        updateLabel();
    }

};
//When the editText is clicked then popup the DatePicker dialog to enable user choose the date       
edittext.setOnClickListener(new OnClickListener() {

     @Override
     public void onClick(View v) {
         // TODO Auto-generated method stub
         new DatePickerDialog(new_split.this, date, myCalendar
                 .get(Calendar.YEAR), myCalendar.get(Calendar.MONTH),
                 myCalendar.get(Calendar.DAY_OF_MONTH)).show();
     }
 });
// Call this whn the user has chosen the date and set the Date in the EditText in format that you wish
 private void updateLabel() {

    String myFormat = "MM/dd/yyyy"; //In which you need put here
    SimpleDateFormat sdf = new SimpleDateFormat(myFormat, Locale.US);   
    edittext.setText(sdf.format(myCalendar.getTime()));
 }

资料来源:日期选择器上的这个答案:点击编辑文本问题时如何弹出日期选择器。希望这可以帮助。

于 2013-07-27T22:07:17.820 回答