Android Time Get getCurrentTime()

Here you can find the source of getCurrentTime()

Description

get Current Time

Declaration

public static long getCurrentTime() 

Method Source Code

//package com.java2s;

import android.text.format.Time;

public class Main {
    public static long getCurrentTime() {
        Time t = new Time();
        t.setToNow();/*  www . jav a2s .c o m*/
        return t.toMillis(true);
    }
}

Related

  1. getNow()
  2. getNow()
  3. now()
  4. getCompactTime()
  5. getCurrentEpochTime()
  6. getDateTime()
  7. getLongTime()
  8. getRequestTime()
  9. getSystemTime()