<?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="12dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/download_kind"/>
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/downloadCategory"
android:spinnerMode="dropdown" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/forecastNrOfDaysLayout">
<SeekBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/forecastNrOfDaysSeek"
android:progress="2"
android:max="24"></SeekBar>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2"
android:id="@+id/forecastNrOfDays"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/download_custom_location"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/download_custom_location"
android:singleLine="true"
android:imeOptions="actionDone"
android:hint="@string/download_city_placehoder"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/download_start"
android:id="@+id/download_start"/>
</LinearLayout>