Skip to content

Instantly share code, notes, and snippets.

@anaselhajjaji
Created March 27, 2017 21:31
Show Gist options
  • Save anaselhajjaji/97a3c3e4e293056fc374a4250d31d02a to your computer and use it in GitHub Desktop.
Save anaselhajjaji/97a3c3e4e293056fc374a4250d31d02a to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editText1"
android:hint="Name" />
<DatePicker
android:id="@+id/datePicker1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:datePickerMode="spinner"
android:calendarViewShown="false" />
<TimePicker
android:id="@+id/timePicker1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:timePickerMode="spinner" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment