android date and time code example
Example 1: android date time
import java.time.*;
LocalDateTime datetime = LocalDateTime.now();
Example 2: android get date
String currentDate = new SimpleDateFormat("dd-MM-yyyy", Locale.getDefault()).format(new Date());
Example 3: android studio get time
String currentTime = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()).format(new Date());
Example 4: code to get date and time in android
SimpleDateFormat.getDateInstance().format(Date())
Example 5: code to get date and time in android
SimpleDateFormat.getTimeInstance().format(Date())