hnyy_edittext_style.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:id="@+id/ll1"
  5. android:layout_below="@+id/rl1"
  6. android:layout_width="300dp"
  7. android:layout_height="wrap_content"
  8. android:background="@drawable/hnyy_edittext_bg"
  9. >
  10. <ImageView
  11. android:id="@+id/iv_left_view"
  12. android:layout_width="18dp"
  13. android:layout_height="20dp"
  14. android:background="@mipmap/hnyy_account_login"
  15. android:layout_centerVertical="true"
  16. android:layout_marginLeft="13dp"
  17. />
  18. <EditText
  19. android:layout_toRightOf="@id/iv_left_view"
  20. android:id="@+id/et_input"
  21. android:layout_width="225dp"
  22. android:layout_height="40dp"
  23. android:layout_marginLeft="10dp"
  24. android:background="@null"
  25. android:digits="0123456789abcdefghijgklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  26. android:gravity="center_vertical"
  27. android:hint="@string/hnyy_input_your_account"
  28. android:maxLength="20"
  29. android:maxLines="1"
  30. android:textColorHint="@color/hnyy_text_hint_color"
  31. android:textSize="16dp"
  32. android:textColor="@color/hnyy_text_black"/>
  33. <Button
  34. android:layout_toRightOf="@+id/et_input"
  35. android:id="@+id/btn_right_view"
  36. android:layout_width="13dp"
  37. android:layout_height="13dp"
  38. android:layout_marginLeft="5dp"
  39. android:background="@mipmap/hnyy_close"
  40. android:layout_centerVertical="true"
  41. />
  42. </RelativeLayout>