Вот так например, если ни чего не напутал:
Timer myTimer = new Timer();
final Handler uiHandler = new Handler();
final TextView txtResult = (TextView) findViewById(R.id.вашid);
myTimer.schedule(new TimerTask() {
@Override
public void run() {
Calendar calendar = Calendar.getInstance();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd:MMMM:yyyy HH:mm:ss a", Locale.getDefault());
final String strDate = simpleDateFormat.format(calendar.getTime());
uiHandler.post(new Runnable() {
@Override
public void run() {
txtResult.setText(strDate);
}
});
});
}, 5000);