</LinearLayout>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/repeat"
+ android:layout_weight="1"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <Switch
+ android:id="@+id/repeat_switch"
+ android:layout_weight="1"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+ </LinearLayout>
+
+ <Spinner
+ android:id="@+id/repeat_spinner"
+ android:entries="@array/repeat_array"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+
+ <TextView
+ android:id="@+id/textView1"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/repeat_every"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <EditText
+ android:id="@+id/editText1"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:ems="10"
+ android:inputType="number" />
+
+ <TextView
+ android:id="@+id/textView2"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Medium Text"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ </LinearLayout>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+
+ <Spinner
+ android:id="@+id/repeat_type"
+ android:entries="@array/repeat_type_array"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1" />
+
+ </LinearLayout>
+
</LinearLayout>
<string name="pick_date">Pick date</string>
<string name="start_label">Start: </string>
<string name="end_label">End: </string>
+ <string name="repeat">Repeat</string>
+ <string name="repeat_every">Repeat every</string>
- <string-array name="Repeat">
+ <string-array name="repeat_array">
<item>Daily</item>
<item>Weekly</item>
<item>Monthly</item>
<item>Yearly</item>
</string-array>
+ <string-array name="repeat_type_array">
+ <item>Forever</item>
+ <item>Until</item>
+ <item>Number of events</item>
+ </string-array>
</resources>
\ No newline at end of file