我把這個日期和時間連接成一個字符串,我做對了嗎?因爲我想給strDateTime傳遞給一個長型的(因爲它的構造是龍) 這裏的代碼將一個字符串值傳遞給Long
public void DT(){
seldate = (TextView) findViewById(R.id.receivedate);
newDate = seldate.getText().toString();
timeChose = time1.getText().toString();
final TimePicker tp = (TimePicker) findViewById(R.id.timePicker1);
strDateTime = newDate + " "+ timeChose ;
DatabaseSource sched = new DatabaseSource(
subject.getText().toString(),
description.getText().toString(),
strDateTime.toLong()
);
long result = dbHelper.addSched(sched);
if(result>0){
Toast.makeText(getApplicationContext(),"Added", Toast.LENGTH_SHORT).show();
}
else {
Toast.makeText(getApplicationContext(),"Add Failed", Toast.LENGTH_SHORT).show();
}
}
PS選定的日期,我把它保存到一個首選項鍵,然後得到它,並傳遞給TextView的中下一個活動(我將創建該事件的地方),然後當點擊一個edittext時,彈出一個timepickerdialog,然後將時間設置爲edittext字段本身。
什麼是'strDateTime'的格式? –
字符串strDateTime –
我的意思是它像'17-09-2016'這樣的格式?顯示樣本日期。 –