You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.6 KiB
92 lines
3.6 KiB
<?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/captions_customoptions">
|
|
<ListPreference
|
|
android:key="font_family"
|
|
android:persistent="true"
|
|
android:title="@string/captions_fontfamily"
|
|
android:summary="%s"
|
|
android:entries="@array/captioning_typeface_selector_titles"
|
|
android:entryValues="@array/captioning_typeface_selector_values" />
|
|
<!-- Entries set in code -->
|
|
<ListPreference
|
|
android:key="text_color"
|
|
android:persistent="true"
|
|
android:title="@string/captions_textcolor"
|
|
android:summary="%s" />
|
|
<ListPreference
|
|
android:key="text_opacity"
|
|
android:persistent="true"
|
|
android:title="@string/captions_textopacity"
|
|
android:summary="%s"
|
|
android:entries="@array/captioning_opacity_selector_titles"
|
|
android:entryValues="@array/captioning_opacity_selector_values" />
|
|
<ListPreference
|
|
android:key="edge_type"
|
|
android:persistent="true"
|
|
android:title="@string/captions_edgetype"
|
|
android:summary="%s"
|
|
android:entries="@array/captioning_edge_type_selector_titles"
|
|
android:entryValues="@array/captioning_edge_type_selector_values" />
|
|
<!-- Entries set in code -->
|
|
<ListPreference
|
|
android:key="edge_color"
|
|
android:persistent="true"
|
|
android:title="@string/captions_edgecolor"
|
|
android:summary="%s" />
|
|
<!-- Entries set in code -->
|
|
<SwitchPreference
|
|
android:key="background_show"
|
|
android:persistent="true"
|
|
android:title="@string/captions_backgroundshow" />
|
|
<ListPreference
|
|
android:key="background_color"
|
|
android:persistent="true"
|
|
android:dependency="background_show"
|
|
android:title="@string/captions_backgroundcolor"
|
|
android:summary="%s" />
|
|
<ListPreference
|
|
android:key="background_opacity"
|
|
android:persistent="true"
|
|
android:dependency="background_show"
|
|
android:title="@string/captions_backgroundopacity"
|
|
android:summary="%s"
|
|
android:entries="@array/captioning_opacity_selector_titles"
|
|
android:entryValues="@array/captioning_opacity_selector_values" />
|
|
<SwitchPreference
|
|
android:key="window_show"
|
|
android:persistent="true"
|
|
android:title="@string/captions_windowshow" />
|
|
<!-- Entries set in code -->
|
|
<ListPreference
|
|
android:key="window_color"
|
|
android:persistent="true"
|
|
android:dependency="window_show"
|
|
android:title="@string/captions_windowcolor"
|
|
android:summary="%s"/>
|
|
<ListPreference
|
|
android:key="window_opacity"
|
|
android:persistent="true"
|
|
android:dependency="window_show"
|
|
android:title="@string/captions_windowopacity"
|
|
android:summary="%s"
|
|
android:entries="@array/captioning_opacity_selector_titles"
|
|
android:entryValues="@array/captioning_opacity_selector_values" />
|
|
</PreferenceScreen>
|