我正在開發一個android應用程序,其中我正在接聽電話 - 日誌。我已顯示呼叫日誌的所有詳細信息。 問題是我可以在幾秒鐘內獲得通話時間,但我需要它以hh-mm-ss格式。以hh-mm-ss格式呼叫記錄持續時間
這裏是下面的代碼,我想:
int duration = managedCursor.getColumnIndex(CallLog.Calls.DURATION);
while (managedCursor.moveToNext())
{
String callDuration = managedCursor.getString(duration);
}
任何幫助嗎? (http://stackoverflow.com/questions/625433/how-to-convert-milliseconds-to-x-mins-x-seconds-in-java/625624#625624)(http://stackoverflow.com/questions/ 266825/how-to-format-a-duration-in-java-eg-format-hmmss/266970#266970) –
這應該有助於http://stackoverflow.com/questions/6118922/convert-seconds-value-to- hours-minutes-seconds-android-java –
@肯狼:謝謝..它幫助 – LISA