我試圖讓系統時間,當我把它放在一個textView作爲字符串一切正常,但是當我將字符串轉換爲整數時,它使我的應用程序強制關閉! 這是我的代碼:將字符串轉換爲整數使我的應用程序強制關閉
TextView texttime = (TextView) findViewById(R.id.txttime);
TimeZone tz = TimeZone.getTimeZone("GMT+03:30");
Calendar c = Calendar.getInstance(tz);
String time = String.format("%02d" , c.get(Calendar.HOUR_OF_DAY))+
String.format("%02d" , c.get(Calendar.MINUTE));
Integer itime = Integer.valueOf(time);
int mtime = (itime-2350);
texttime.setText(mtime);
什麼問題?
您能否提供錯誤信息? –