enter_jid_dialog.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. android:paddingLeft="?attr/dialog_horizontal_padding"
  7. android:paddingTop="?attr/dialog_vertical_padding"
  8. android:paddingRight="?attr/dialog_horizontal_padding"
  9. android:paddingBottom="?attr/dialog_vertical_padding" android:tag="layout/enter_jid_dialog_0" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
  10. <TextView
  11. style="@style/InputLabel"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="@string/your_account" />
  15. <Spinner
  16. android:id="@+id/account"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"/>
  19. <android.support.design.widget.TextInputLayout
  20. android:id="@+id/jid_layout"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:hint="@string/account_settings_jabber_id"
  24. app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error"
  25. app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint">
  26. <AutoCompleteTextView
  27. android:id="@+id/jid"
  28. style="@style/Widget.Conversations.EditText"
  29. android:layout_width="fill_parent"
  30. android:layout_height="wrap_content"
  31. android:imeOptions="actionDone|flagNoExtractUi"
  32. android:inputType="textEmailAddress" />
  33. </android.support.design.widget.TextInputLayout>
  34. </LinearLayout>