Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import java.text.SimpleDateFormat;
import java.util.Calendar;

import java.util.Locale;

import android.widget.EditText;

public class Main {
    public static void updateLabel(EditText et, Calendar calendar) {
        String format = "dd/MM/yyyy";
        SimpleDateFormat sdf = new SimpleDateFormat(format, Locale.US);
        et.setText(sdf.format(calendar.getTime()));
    }
}