Am using Date Picker in my screen. But the problem is its not displaying correctly means.. see this image:

You can see there , year is cutting . Why it is happening.
Edited:
@Override
protected Dialog onCreateDialog(int id) {
Calendar c = Calendar.getInstance();
int cyear = c.get(Calendar.YEAR);
int cmonth = c.get(Calendar.MONTH);
int cday = c.get(Calendar.DAY_OF_MONTH);
switch (id) {
case DATE_DIALOG_ID:
return new DatePickerDialog(this, mDateSetListener, cyear, cmonth, cday);
}
return null;
}
private DatePickerDialog.OnDateSetListener mDateSetListener = new DatePickerDialog.OnDateSetListener() {
// onDateSet method
public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
//Toast.makeText(VideoPush.this, "Selected Date is ="+date_selected, Toast.LENGTH_SHORT).show();
}
};
When i click on textView am opening this dialog.
I would rather use this than Default Date Picker :
Date Slider