我想使用日历显示当前日期和时间。我的代码是
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);
但它显示该应用程序不幸停止工作而不显示日期..