fragment_forget_pwd.xml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="@dimen/fragment_common_width"
  5. android:layout_height="@dimen/fragment_forget_pwd_height"
  6. android:layout_gravity="center"
  7. android:background="#ffffff"
  8. android:gravity="center"
  9. android:orientation="vertical">
  10. <TextView
  11. android:id="@id/please_call_customer_service_tv"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="@string/please_call_customer_service"
  15. android:textSize="10sp"/>
  16. <TextView
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_margin="5dp"
  20. android:text="@string/please_forgive"
  21. android:textSize="10sp"/>
  22. <Button
  23. android:id="@id/back_login"
  24. style="@style/btn_common"
  25. android:background="@drawable/selector_btn_deep_green"
  26. android:text="@string/back_login"/>
  27. </LinearLayout>