java android get current time in seconds code example
Example 1: android java get current time
import java.time.*;
LocalDateTime datetime = LocalDateTime.now();
Example 2: android studio get time
String currentTime = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()).format(new Date());