Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content" >
- <TextView
- android:id="@+id/alarm_detail_name_lbl"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="3sp"
- android:layout_marginTop="10sp"
- android:text="new_alarm_name_label"
- android:textSize="15sp" />
- <EditText
- android:id="@+id/alarm_detail_name_edit_text"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/alarm_detail_name_lbl"
- android:hint="new_alarm_name_hint"
- android:inputType="textCapSentences|textAutoCorrect"
- android:textSize="15sp" />
- <TextView
- android:id="@+id/alarm_detail_time_lbl"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/alarm_detail_name_edit_text"
- android:layout_marginBottom="3sp"
- android:layout_marginTop="10sp"
- android:text="new_alarm_time_label"
- android:textSize="15sp" />
- <TextView
- android:id="@+id/alarm_detail_time_text_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/alarm_detail_time_lbl"
- android:maxLength="30"
- android:textSize="15sp" />
- <TextView
- android:id="@+id/alarm_detail_first_run_lbl"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/alarm_detail_time_text_view"
- android:layout_marginBottom="3sp"
- android:layout_marginTop="10sp"
- android:text="new_alarm_date_label"
- android:textSize="15sp" />
- <TextView
- android:id="@+id/alarm_detail_first_run_text_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/alarm_detail_first_run_lbl"
- android:maxLength="30"
- android:textSize="15sp" />
- <TextView
- android:id="@+id/alarm_detail_interval_lbl"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/alarm_detail_first_run_text_view"
- android:layout_marginBottom="3sp"
- android:layout_marginTop="10sp"
- android:text="new_alarm_interval_label"
- android:textSize="15sp" />
- <Spinner
- android:id="@+id/alarm_detail_interval_spinner"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/alarm_detail_interval_lbl" />
- <TextView
- android:id="@+id/alarm_detail_description_lbl"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/alarm_detail_interval_spinner"
- android:layout_marginBottom="3sp"
- android:layout_marginTop="10sp"
- android:text="new_alarm_description_label"
- android:textSize="15sp" />
- <EditText
- android:id="@+id/alarm_detail_description_edit_text"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/alarm_detail_description_lbl"
- android:hint="new_alarm_description_hint"
- android:maxLength="100"
- android:textSize="15sp" />
- </RelativeLayout>
- </ScrollView>
- <LinearLayout
- android:id="@+id/alarm_details_buttons_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom" >
- <Button
- android:id="@+id/alarm_details_return_to_list_button"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom"
- android:layout_weight="1"
- android:text="@android:string/ok"
- android:textSize="15sp"
- android:width="100sp" />
- <Button
- android:id="@+id/alarm_details_update_button"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom"
- android:layout_weight="1"
- android:state_enabled="false"
- android:text="update"
- android:textSize="15sp"
- android:width="100sp" />
- </LinearLayout>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment