Learn about the Android Development and how it can be used to create mobile and non-mobile applications.This website give full tutorials for develop android application and it is absolutely free.
Showing posts with label Date into Day Tutorial. Show all posts
Showing posts with label Date into Day Tutorial. Show all posts
SimpleDateFormat inFormat = new SimpleDateFormat("dd-MM-yyyy");
Date date = inFormat.parse(Yourdate);
SimpleDateFormat outFormat = new SimpleDateFormat("EEEE");
String goal = outFormat.format(date);