0
我想用calendar.my代碼來顯示當前的日期和時間是Android的日期和時間
LinearLayout lview=new LinearLayout(this);
myText=new TextView(this);
strText=new TextView(this);
Calendar c=Calendar.getInstance();
int seconds=c.get(Calendar.SECOND);
myText.setText("Your current seconds are:");
strText.setText(seconds);
lview.addView(strText);
lview.addView(myText);
setContentView(lview);
,但它顯示了應用程序不幸停止,不顯示日期的工作..
您應該進入張貼logcat的輸出,當你有一個錯誤或崩潰,你解決不了的習慣。 – Karakuri