username_and_email.xml 1.1 KB

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.v7.widget.LinearLayoutCompat
  3. xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
  4. android:layout_height="match_parent" android:orientation="vertical">
  5. <android.support.v7.widget.AppCompatTextView
  6. android:text="@string/pref_gpg_username"
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content" />
  9. <android.support.v7.widget.AppCompatEditText
  10. android:id="@+id/username"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content" />
  13. <android.support.v7.widget.AppCompatTextView
  14. android:text="@string/pref_gpg_user_mail"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content" />
  17. <android.support.v7.widget.AppCompatEditText
  18. android:id="@+id/email"
  19. android:inputType="textEmailAddress"
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content" />
  22. </android.support.v7.widget.LinearLayoutCompat>