activity_register_password.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:background="@color/normal_bg"
  5. android:orientation="vertical" >
  6. <com.xzjmyk.pm.activity.view.ClearEditText
  7. android:id="@+id/password_edit"
  8. style="@style/IMLineEditPass"
  9. android:layout_marginLeft="9dp"
  10. android:layout_marginRight="9dp"
  11. android:layout_marginTop="9dp"
  12. android:background="@drawable/set_list_up"
  13. android:hint="@string/please_input_password" />
  14. <com.xzjmyk.pm.activity.view.ClearEditText
  15. android:id="@+id/confirm_password_edit"
  16. style="@style/IMLineEditPass"
  17. android:layout_marginLeft="9dp"
  18. android:layout_marginRight="9dp"
  19. android:background="@drawable/set_list_down"
  20. android:hint="@string/please_confirm_password" />
  21. <Button
  22. android:id="@+id/next_step_btn"
  23. style="@style/IMButton.Orange"
  24. android:layout_width="match_parent"
  25. android:layout_marginLeft="9dp"
  26. android:layout_marginRight="9dp"
  27. android:layout_marginTop="10dp"
  28. android:gravity="center"
  29. android:text="@string/next_step" />
  30. </LinearLayout>