DatePicker Dialog
DatePicker Dialog:
DatePickerDialog is a dialog which consists of a picker-wheel where the user is able to select a single date.
It is a class, which is a part of the Android framework, that is frequently utilized in applications as means to choose a date.
Example:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".DatePickerDialogExample"
android:padding="16dp"
android:orientation="vertical"
android:gravity="center_horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Date Picker Dialog"
android:textColor="@color/colorOrange"
android:textSize="20sp"
android:layout_marginBottom="20dp"
/>
<EditText
android:id="@+id/datepickerdialog1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Choose your date"
android:inputType="none"
android:focusable="false"
/>
</LinearLayout>
Output