pref_sip_account.xml 699 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
  3. <EditTextPreference
  4. android:inputType="textNoSuggestions"
  5. android:key="key_domain"
  6. android:title="@string/pref_domain" >
  7. </EditTextPreference>
  8. <EditTextPreference
  9. android:inputType="textNoSuggestions"
  10. android:key="key_username"
  11. android:title="@string/pref_username" >
  12. </EditTextPreference>
  13. <EditTextPreference
  14. android:inputType="textPassword"
  15. android:key="key_password"
  16. android:password="true"
  17. android:title="@string/pref_password" >
  18. </EditTextPreference>
  19. </PreferenceScreen>