dialog_inkrpln_invitation.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:padding="15dp"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <TextView
  8. android:textSize="24sp"
  9. android:textStyle="bold"
  10. android:gravity="center_horizontal"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:text="@string/readyink_invitation_title" />
  14. <ScrollView
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent">
  17. <LinearLayout
  18. android:orientation="vertical"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content">
  21. <TextView
  22. android:textSize="20sp"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:layout_marginTop="10dp"
  26. android:layout_marginBottom="20dp"
  27. android:text="@string/readyink_invitation_description" />
  28. <Button
  29. android:id="@+id/button1"
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:text="@string/str_yes"
  33. android:textAllCaps="false" />
  34. <Button
  35. android:id="@+id/button2"
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:text="@string/str_no"
  39. android:textAllCaps="false" />
  40. <Button
  41. android:id="@+id/button3"
  42. android:layout_width="match_parent"
  43. android:layout_height="wrap_content"
  44. android:text="@string/donot_show_again"
  45. android:textAllCaps="false" />
  46. </LinearLayout>
  47. </ScrollView>
  48. </LinearLayout>