65 lines
2.1 KiB
XML
65 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2016 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License
|
|
-->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:title="@string/display" >
|
|
|
|
<ListPreference
|
|
android:key="resolution"
|
|
android:title="@string/resolution"
|
|
android:entries="@array/resolution_list"
|
|
android:entryValues="@array/resolution_list"/>
|
|
|
|
<ListPreference
|
|
android:key="color"
|
|
android:title="@string/color"
|
|
android:entries="@array/color_list"
|
|
android:entryValues="@array/color_list"/>
|
|
|
|
<CheckBoxPreference
|
|
android:key="hdr10"
|
|
android:title="@string/hdr_format_hdr10"
|
|
android:visibility="gone" />
|
|
|
|
<Preference
|
|
android:key="zoom"
|
|
android:title="@string/zoom" />
|
|
|
|
<!-- <CheckBoxPreference-->
|
|
<!-- android:key="fixed_rotation"-->
|
|
<!-- android:title="@string/fixed_rotation" />-->
|
|
|
|
<!-- <ListPreference-->
|
|
<!-- android:key="rotation"-->
|
|
<!-- android:title="@string/hdmi_rotation"-->
|
|
<!-- android:entries="@array/hdmi_rotation_entries"-->
|
|
<!-- android:entryValues="@array/hdmi_rotation_values"/>-->
|
|
|
|
<Preference
|
|
android:key="advanced_settings"
|
|
android:title="@string/advance_settings" />
|
|
|
|
<Preference
|
|
android:title="HDR"
|
|
android:fragment="com.android.tv.settings.display.HdrVividFragment" />
|
|
|
|
<Preference
|
|
android:key="ai_display_settings"
|
|
android:title="@string/ai_display_settings" />
|
|
|
|
</PreferenceScreen>
|