How do I get an edittext field to display the date and another to display the time automatically on open?
I have the edittexts coded as follows:
XML Code:
<!-- Creating autocomplete text field for date -->
<EditText
android:id="@+id/autoD8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/autoTime"
android:layout_alignLeft="@+id/autoTime"
android:ems="10"
android:inputType="textAutoComplete" />
<!-- Creating autocomplete text field for time -->
<EditText
android:id="@+id/autoTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/txtTime"
android:layout_alignLeft="@+id/inputPlace"
android:ems="10"
android:inputType="textAutoComplete" />
All I have in my java code section at the moment is as follows:
EditText autoD8, autoTime;