4 Ways to Get Current Date in Android
In this tutorial I will show you 4 different ways to get current date in android. For doing this we will use Calendar, Date, SimpleDateFormate and System class. How to Get Current Date in Android? Method 1: In this method we will use Calendar and SimpleDateFormate class. SimpleDateFormat sdf = new SimpleDateFormat(“dd/MM/yyyy”); Calendar c = …
