我希望一個簡單的問題。 如何將輸入到DatePicker的日期與當前日曆日期進行比較?如何比較DatePicker日期和日曆日期
解釋一下,如果我把DatePicker的日期存儲爲一個字符串,我怎麼能比較它到android系統日曆上的當前日期?
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.dpresult);
textView1 = (TextView)findViewById(R.id.textView1);
button1 = (Button)findViewById(R.id.button1);
button1.setOnClickListener(new OnClickListener(){
public void onClick(View v){
Intent intent = new Intent(datePickerResult.this, calander.class);
startActivity(intent);
}
});
Bundle extras = getIntent().getExtras();
year = extras.getInt("year");
day = extras.getInt("day");
month = extras.getInt("month");
textView1.setText(day+"");
} }
你是什麼日期選擇器日期樣子?你可以放棄嗎? –
您是否使用標準的DatePicker小部件?該處理程序返回3個整數,爲什麼將其轉換爲一個字符串? – aamit915