123456789101112131415161718192021222324252627282930313233343536 |
- <?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" >
- <include
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- layout="@layout/dialog_title" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/dialog_bg"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/txt_dialog_prompt"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="18sp"
- android:layout_gravity="center_horizontal"
- android:layout_marginBottom="25dip"
- android:layout_marginTop="25dip" />
- <Button
- android:id="@+id/btn_resume"
- android:layout_width="100dip"
- android:layout_height="wrap_content"
- android:layout_gravity="right"
- android:layout_marginRight="5dip"
- android:text="@string/str_resume" />
- </LinearLayout>
- </LinearLayout>
|