Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical" android:layout_width="330dp"
  5. android:layout_gravity="center"
  6. android:gravity="center"
  7. android:layout_height="210dp">
  8. <androidx.cardview.widget.CardView
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. app:cardBackgroundColor="@color/colorWhite"
  12. app:cardCornerRadius="20dp"
  13. app:cardUseCompatPadding="true">
  14. <RelativeLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent">
  17. <TextView
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="@string/check_email"
  21. android:textSize="@dimen/text_size_medium"
  22. android:textColor="@color/textColorDialog"
  23. android:textStyle="bold"
  24. android:layout_alignParentTop="true"
  25. android:layout_margin="24dp"
  26. android:lineHeight="23dp"/>
  27. <TextView
  28. android:layout_margin="24dp"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:text="@string/check_eamil_desc"
  32. android:layout_centerInParent="true"
  33. android:textSize="@dimen/text_size_small"
  34. android:textColor="@color/colorDarkGray"
  35. android:lineHeight="17dp" />
  36. <RelativeLayout
  37. android:layout_width="match_parent"
  38. android:layout_height="wrap_content"
  39. android:layout_alignParentBottom="true">
  40. <Button
  41. android:id="@+id/tv_ok"
  42. style="?android:attr/borderlessButtonStyle"
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:text="@string/ok"
  46. android:textSize="@dimen/text_size_small"
  47. android:lineHeight="18dp"
  48. android:textColor="@color/colorOrange"
  49. android:layout_alignParentRight="true"
  50. android:layout_marginHorizontal="24dp"
  51. android:layout_marginTop="16dp"
  52. android:layout_marginBottom="13dp"
  53. android:background="@color/colorWhite"/>
  54. </RelativeLayout>
  55. </RelativeLayout>
  56.  
  57. </androidx.cardview.widget.CardView>
  58.  
  59. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement