jm_verify_code_edittext.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:gravity="center"
  6. android:orientation="horizontal">
  7. <EditText
  8. android:id="@+id/et_input_verify_code"
  9. android:layout_width="0dp"
  10. android:layout_height="36dp"
  11. android:layout_weight="3"
  12. android:background="@drawable/jm_input_bg_8"
  13. android:digits="0123456789"
  14. android:hint="@string/moblie_edit_code_hint"
  15. android:imeOptions="flagNoExtractUi"
  16. android:paddingLeft="30dp"
  17. android:textColor="@color/jmfont_gray"
  18. android:textSize="13sp"/>
  19. <Button
  20. android:id="@+id/btn_send"
  21. android:layout_width="0dp"
  22. android:layout_height="36dp"
  23. android:layout_weight="1"
  24. android:background="@color/jmfont_fonts_blues"
  25. android:text="@string/moblie_bt_code"
  26. android:textColor="@color/jmfont_white"
  27. android:textSize="14sp"/>
  28. </LinearLayout>