how to get system current time in android studio code example
Example 1: android java get current time
import java.time.*;
LocalDateTime datetime = LocalDateTime.now();
Example 2: how to get current date time in android
import java.util.Calendar
Date currentTime = Calendar.getInstance().getTime();