Advertisement
Guest User

MOLAY

a guest
May 24th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.v7.widget.CardView
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. app:cardElevation="10dp"
  8. >
  9.  
  10.  
  11. <LinearLayout
  12. android:orientation="vertical"
  13. android:layout_margin="20dp"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"/>
  16.  
  17.  
  18. <com.rengwuxian.materialedittext.MaterialEditText
  19. android:id="@+id/edtEmail"
  20. android:hint="Email"
  21. android:inputType="textEmailAddress"
  22. android:text=""
  23. android:textColor="@color/colorPrimary"
  24. android:textColorHint="@color/colorPrimary"
  25. android:textSize="20sp"
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28.  
  29.  
  30. app:met_singleLineEllipsis="true"
  31. app:met_baseColor="@color/colorPrimary"
  32. app:met_floatingLabel="highlight"
  33. app:met_primaryColor="@color/colorPrimary"
  34. />
  35.  
  36.  
  37.  
  38. </android.support.v7.widget.CardView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement