12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:background="@drawable/dialog_bg"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_margin="@dimen/space_20"
- android:gravity="center"
- android:text="@string/dialog_system_show"
- android:textColor="@color/black"
- android:textSize="@dimen/text_size_20" />
- <TextView
- android:id="@+id/txt_dialog_prompt"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/space_15"
- android:layout_marginLeft="@dimen/space_20"
- android:text="@string/fragment_dialog_name"
- android:textSize="@dimen/text_size_14" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="@dimen/space_15"
- android:orientation="horizontal">
- <Button
- android:id="@+id/dialog_btn_resume"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dip"
- android:layout_weight="1"
- android:background="@color/dialog_bg_blue"
- android:padding="@dimen/space_10"
- android:text="@string/str_resume"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_15" />
- <Button
- android:id="@+id/dialog_btn_cancel"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dip"
- android:layout_weight="1"
- android:background="@color/dialog_bg"
- android:padding="@dimen/space_10"
- android:text="@string/cancle"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_15" />
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|