dialog_join_conference.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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:paddingBottom="8dp"
  7. android:paddingLeft="24dp"
  8. android:paddingRight="24dp"
  9. android:paddingTop="16dp" android:tag="layout/dialog_join_conference_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/account_jid_layout"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:hint="@string/xmpp_address"
  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:inputType="textEmailAddress"
  32. android:imeOptions="actionDone|flagNoExtractUi"/>
  33. </android.support.design.widget.TextInputLayout>
  34. <CheckBox
  35. android:id="@+id/bookmark"
  36. style="@style/Widget.Conversations.CheckBox"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_marginTop="8dp"
  40. android:checked="true"
  41. android:text="@string/save_as_bookmark"/>
  42. </LinearLayout>