blob: cf6108e8b68d2ed18124f91552d626cd90a83738 [file] [log] [blame]
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:paddingTop="10dp"
android:text="@string/date_range_start_date"
android:textSize="18sp"
android:textStyle="bold"/>
<DatePicker
android:id="@+id/dpStartDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:calendarViewShown="false"
android:datePickerMode="spinner"
tools:targetApi="LOLLIPOP"/>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_margin="10dp"
android:background="@android:color/darker_gray"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/date_range_end_date"
android:textSize="18sp"
android:textStyle="bold"/>
<DatePicker
android:id="@+id/dpEndDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:calendarViewShown="false"
android:datePickerMode="spinner"
tools:targetApi="LOLLIPOP"/>
</LinearLayout>
</ScrollView>