Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <TextView
  2. android:id="@+id/txt_email"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_marginTop="10dp"
  6. android:text="@string/email"
  7. android:textColor="@color/gray"
  8. android:textSize="@dimen/medium"
  9. app:font="font/trebuc_normal" />
  10.  
  11. <EditText
  12. android:id="@+id/et_un"
  13. style="@style/EditText"
  14. android:layout_width="fill_parent"
  15. android:background="@drawable/edittext_roundcorner"
  16. android:imeOptions="actionNext"
  17. />
  18.  
  19. <FontedTextView
  20. android:id="@+id/txt_pass"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:text="@string/password"
  24. android:textColor="@color/gray"
  25. android:textSize="@dimen/medium"
  26. app:font="font/trebuc_normal" />
  27.  
  28. <EditText
  29. android:id="@+id/password"
  30. style="@style/EditText"
  31. android:layout_width="fill_parent"
  32. android:background="@drawable/edittext_roundcorner"
  33. android:inputType="textPassword"
  34. />
  35.  
  36. android:singleLine="true"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement