私のアプリケーションでは、ユーザーが日付ピッカーから日付を選択できるようにしたいと考えています。次のコードを実行して検索しましたが、エラーが表示されています。助けてください。
私のコード:
save.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View arg0)
{
// TODO Auto-generated method stub
EditText item=(EditText)findViewById(R.id.itemedit);
EditText price=(EditText)findViewById(R.id.priceedit);
EditText rec=(EditText)findViewById(R.id.reccedit);
EditText date=(EditText)findViewById(R.id.reccdateedit);
EditText type=(EditText)findViewById(R.id.recccatedit);
String upditem=item.getText().toString();
String updprice=price.getText().toString();
String dateedit=date.getText().toString();
String typeedit=type.getText().toString();
showDialog(DATE_DIALOG_ID);------------>I don't konw exactly about this.But i got this code.
System.out.println("DP="+mYear);
}
final Calendar c = Calendar.getInstance();
mYear = c.get(Calendar.YEAR);
mMonth = c.get(Calendar.MONTH);
mDay = c.get(Calendar.DAY_OF_MONTH);
}
表示中のエラー:
cannot create dialog for 0;
これを達成する他の方法があります。