DateUtils.formatDateTime() allows you to supply a time, and based on the flags you provide, it creates a localized datetime string. The flags allow you to specify whether to include specific elements (like the weekday).
Date date = new Date();
String localizedDate = DateUtils.formatDateTime(contex...