Skip to content

UserInterface#

Default userInterface.xml#

userInterface.xml
<?xml version="1.0" encoding="utf-8"?>
<config version="1.2.0">
  <userInterface>
    <showQuickAccessBar>true</showQuickAccessBar>
    <showQuickAccessDnd>true</showQuickAccessDnd>
    <showQuickAccessFwd>true</showQuickAccessFwd>
    <showQuickAccessVmb>true</showQuickAccessVmb>
    <showQuickAccessAnonymous>false</showQuickAccessAnonymous>
    <restrictMessageableNumbers>true</restrictMessageableNumbers>
    <clickToDialKey></clickToDialKey>
    <visibleMenus>
      <contacts>true</contacts>
      <callLog>true</callLog>
      <messages>true</messages>
      <voicemail>true</voicemail>
      <editContacts>true</editContacts>
      <settings>true</settings>
      <identitySettings>true</identitySettings>
      <telephonySettings>true</telephonySettings>
      <accountSettings>true</accountSettings>
      <importExportSettings>true</importExportSettings>
      <loggingSettings>true</loggingSettings>
      <infoSettings>true</infoSettings>
      <audioSettings>true</audioSettings>
      <appSettings>true</appSettings>
      <exitButton>true</exitButton>
    </visibleMenus>
  </userInterface>

Commented File-structure#

userInterface.xml
<?xml version="1.0" encoding="utf-8"?>
<config version="1.2.0">
  <!-- List of main menus and symbols that will be shown.
      (true => show; false => hide) -->
  <userInterface>
    <!-- shows the status bar with status and function symbols
         type: boolean -->
    <showQuickAccessBar>true</showQuickAccessBar>
    <!-- shows the Do-not-disturb symbol
         type: boolean -->
    <showQuickAccessDnd>true</showQuickAccessDnd>
    <!-- shows the Call forwarding symbol
         type: boolean -->
    <showQuickAccessFwd>true</showQuickAccessFwd>
    <!-- shows the Voice mail symbol
         type: boolean -->
    <showQuickAccessVmb>true</showQuickAccessVmb>
    <!-- shows the Anonymous call symbol
         type: boolean -->
    <showQuickAccessAnonymous>false</showQuickAccessAnonymous>
    <restrictMessageableNumbers>true</restrictMessageableNumbers>
    <!-- System-wide call start key
         type: enum
         accepted values:
            F1
            F2 
            F3
            F4 
            F5
            F6 
            F7
            F8 
            F9
            F10 
            F11
            F12 -->
    <clickToDialKey></clickToDialKey>
    <!-- List of main menus that will be shown. 
        (true => show; false => hide) -->
    <visibleMenus>
      <!-- shows the Contacts page
           type: boolean -->
      <contacts>true</contacts>
      <!-- shows the Call list page
           type: boolean -->
      <callLog>true</callLog>
      <!-- shows the Messages page
           type: boolean -->
      <messages>true</messages>
      <!-- shows the Voicemails page
           type: boolean -->
      <voicemail>true</voicemail>
      <!-- shows the Contacts page
           type: boolean -->
      <editContacts>true</editContacts>
      <!-- shows the settings pages
           type: boolean -->
      <settings>true</settings>
      <!-- shows the Identity page
           type: boolean -->
      <identitySettings>true</identitySettings>
      <!-- shows the Telephony page
           type: boolean -->
      <telephonySettings>true</telephonySettings>
      <!-- shows the Accounts page
           type: boolean -->
      <accountSettings>true</accountSettings>
      <!-- shows the Backup page
           type: boolean -->
      <importExportSettings>true</importExportSettings>
      <!-- shows the Logging page
           type: boolean -->
      <loggingSettings>true</loggingSettings>
      <!-- shows the Info page
           type: boolean -->
      <infoSettings>true</infoSettings>
      <!-- shows the Audio page (only for Desktop)
           type: boolean -->
      <audioSettings>true</audioSettings>
      <!-- shows the App page
           type: boolean -->
      <appSettings>true</appSettings>
      <!-- shows the Exit Button (only for Android/iOS)
           type: boolean -->
      <exitButton>true</exitButton>
    </visibleMenus>
  </userInterface>