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.
42 lines
2.0 KiB
42 lines
2.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (C) 2020 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.
|
|
-->
|
|
<resources>
|
|
<!-- Component name of default touch IME. This resource should be overlaid if a device uses an
|
|
IME other than CarLatinIME. This resource should not be empty. -->
|
|
<string name="default_touch_input_method" translatable="false">com.android.inputmethod.latin/.CarLatinIME</string>
|
|
<!-- Component name of rotary IME. Empty if none. -->
|
|
<string name="rotary_input_method" translatable="false"></string>
|
|
|
|
<!-- Intents to launch an activity when the user nudges up, down, left, or right off the edge of
|
|
the screen. No activity is launched if the relevant element of this array is empty. -->
|
|
<string-array name="off_screen_nudge_intents" translatable="false">
|
|
<item></item>
|
|
<item></item>
|
|
<item></item>
|
|
<item></item>
|
|
</string-array>
|
|
|
|
<!-- Window accessibility titles that shouldn't be considered an overlay window. For example,
|
|
application windows that represent TaskViews or TaskDisplayAreas should be included here.
|
|
Window accessibility titles can be checked by using the following command:
|
|
$ adb shell dumpsys accessibility
|
|
TODO(b/185399833): Replace this with an explicit API to check for special windows. -->
|
|
<string-array name="excluded_application_overlay_window_titles" translatable="false">
|
|
<item>Maps</item>
|
|
</string-array>
|
|
</resources>
|