2

我有三个领域

  1. 当前的日期
  2. 下一个到期日
  3. 状态,它是具有值 open、close、all 的微调器

我的Java代码是:

    date_txtbx = (EditText) findViewById(R.id.date_txtbx);
        date_txtbx.setText(" "
                + String.valueOf(java.text.DateFormat.getDateTimeInstance()
                        .format(Calendar.getInstance().getTime())));

next_due_on_txtbx = (EditText) findViewById(R.id.next_due_on_txtbx);
        next_due_on_txtbx.setText(non_ticket_task.next_due_on);



       status = (Spinner) findViewById(R.id.status_spinner);
     // Create an ArrayAdapter using the string array and a default spinner layout
     ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
             R.array.Status_array, android.R.layout.simple_dropdown_item_1line);
     // Specify the layout to use when the list of choices appears
     adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
     // Apply the adapter to the spinner
     status.setAdapter(adapter);

我希望在用户选择关闭状态时禁用下一个截止日期,并且如果用户输入的下一个截止日期小于或等于当前日期,则会显示错误消息“请插入大于当前日期的日期”。怎么可能??我只想要这些验证**EditText**。请指导。任何帮助将不胜感激。

申请条件:

   next_due_on_txtbx = (EditText) findViewById(R.id.next_due_on_txtbx);
        next_due_on_txtbx.setText(non_ticket_task.next_due_on);
        if (next_due_on_txtbx.after(date_txtbx))
        {
            Context count;
            Toast.makeText(count, "Starting date cannot be before Current date", Toast.LENGTH_LONG).show();
        }
4

1 回答 1

1

只需检查

 if (date1.after(date2))
{
    Toast.makeText(Your_Current_Activity.this, 
       "Starting date cannot be before Current date", Toast.LENGTH_LONG).show();
}
于 2012-12-22T06:23:03.257 回答