1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18    xmlns:sysui="http://schemas.android.com/apk/res-auto"
19    android:title="@string/nav_bar">
20
21    <com.android.systemui.tuner.RadioListPreference
22        android:key="layout"
23        android:title="@string/nav_bar_layout"
24        android:summary="%s"
25        android:persistent="false"
26        android:entries="@array/nav_bar_layouts"
27        android:entryValues="@array/nav_bar_layouts_values" />
28
29    <com.android.systemui.tuner.RadioListPreference
30        android:key="type_left"
31        android:title="@string/left_nav_bar_button_type"
32        android:persistent="false"
33        android:summary="%s"
34        android:entries="@array/nav_bar_buttons"
35        android:entryValues="@array/nav_bar_button_values" />
36
37    <Preference
38        android:key="keycode_left"
39        android:persistent="false"
40        android:title="@string/left_keycode" />
41
42    <com.android.systemui.tuner.RadioListPreference
43        android:key="icon_left"
44        android:persistent="false"
45        android:summary="%s"
46        android:title="@string/left_icon" />
47
48    <com.android.systemui.tuner.RadioListPreference
49        android:key="type_right"
50        android:title="@string/right_nav_bar_button_type"
51        android:summary="%s"
52        android:persistent="false"
53        android:entries="@array/nav_bar_buttons"
54        android:entryValues="@array/nav_bar_button_values" />
55
56    <Preference
57        android:key="keycode_right"
58        android:persistent="false"
59        android:title="@string/right_keycode" />
60
61    <com.android.systemui.tuner.RadioListPreference
62        android:key="icon_right"
63        android:persistent="false"
64        android:summary="%s"
65        android:title="@string/right_icon" />
66
67</PreferenceScreen>
68