I need to remove the date in top line, see the image (it marker in yellow):
and this is my code:
final Calendar mCalender = Calendar.getInstance();
int mYear = mCalender.get(Calendar.YEAR);
int mMonth = mCalender.get(Calendar.MONTH);
int mDay = mCalender.get(Calendar.DAY_OF_MONTH);
DatePickerDialog dialog = new DatePickerDialog(getActivity(),R.style.DatePicker,
(DatePickerDialog.OnDateSetListener) getActivity(), mYear, mMonth, mDay);
and this the code from layout
xml:
<EditText
android:id="@+id/editDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="false"
android:hint="Date"
android:onClick="getDate"
android:textCursorDrawable="@color/colorPrimaryDark"/>
what I should do for fix it?
alot of thanks :)