I have datepicker dialog popup on button click event in android. the date format it assigned to text box is d/mm/yyyy.
how to have the date format as dd/MMM/yyyy once user select the date from datepicker dialog below is my dateset code
public void onDateSet(DatePicker view, int yearr, int monthOfYearr,
int dayOfMonthh) {
// TODO Auto-generated method stub
yrr=yearr;
monn=monthOfYearr +1;
dayy=dayOfMonthh;
EditText itt=(EditText)findViewById(R.id.editText2);
itt.setText(dayy+" / "+monn+" / "+yrr);