Advertisement
Guest User

passwordvalidator.xml

a guest
Dec 16th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  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:orientation="vertical"
  6.  
  7.  
  8. android:visibility="visible">
  9.  
  10.  
  11. <EditText
  12. android:id="@+id/pwfield"
  13. android:layout_width="600dp"
  14. android:layout_height="wrap_content"
  15. android:autofillHints=""
  16. android:ems="10"
  17. android:inputType="textPassword"
  18. android:visibility="visible" />
  19.  
  20. <TextView
  21. android:id="@+id/pwgrad"
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24.  
  25. android:visibility="visible" />
  26.  
  27. <ProgressBar
  28. android:id="@+id/progressBar"
  29. style="?android:attr/progressBarStyleHorizontal"
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32.  
  33. android:max="4"
  34. android:min="0"
  35. android:visibility="visible" />
  36.  
  37. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement