dialog_resume.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <include
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. layout="@layout/dialog_title" />
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:background="@drawable/dialog_bg"
  14. android:orientation="vertical" >
  15. <TextView
  16. android:id="@+id/txt_dialog_prompt"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:textSize="18sp"
  20. android:layout_gravity="center_horizontal"
  21. android:layout_marginBottom="25dip"
  22. android:layout_marginTop="25dip" />
  23. <Button
  24. android:id="@+id/btn_resume"
  25. android:layout_width="100dip"
  26. android:layout_height="wrap_content"
  27. android:layout_gravity="right"
  28. android:layout_marginRight="5dip"
  29. android:text="@string/str_resume" />
  30. </LinearLayout>
  31. </LinearLayout>