Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright (C) 2013 The Android Open Source Project |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License |
| 16 | --> |
| 17 | |
| 18 | <!-- Array resources for the Phone app. --> |
| 19 | <resources> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 20 | <!-- "Target" resources for the GlowPadView widget used for incoming calls; |
| 21 | see InCallTouchUi.showIncomingCallWidget() and incall_touch_ui.xml. --> |
| 22 | |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 23 | <!-- For audio calls, if respond via SMS is disabled: |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 24 | - Answer (drag right) |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 25 | - Decline (drag left) --> |
| 26 | <array name="incoming_call_widget_audio_without_sms_targets"> |
| 27 | <item>@drawable/ic_lockscreen_answer</item> |
| 28 | <item>@null</item> |
| 29 | <item>@drawable/ic_lockscreen_decline</item> |
| 30 | <item>@null</item>" |
| 31 | </array> |
| 32 | <array name="incoming_call_widget_audio_without_sms_target_descriptions"> |
| 33 | <item>@string/description_target_answer</item> |
| 34 | <item>@null</item> |
| 35 | <item>@string/description_target_decline</item> |
| 36 | <item>@null</item>" |
| 37 | </array> |
| 38 | <array name="incoming_call_widget_audio_without_sms_direction_descriptions"> |
| 39 | <item>@string/description_direction_right</item> |
| 40 | <item>@null</item> |
| 41 | <item>@string/description_direction_left</item> |
| 42 | <item>@null</item> |
| 43 | </array> |
| 44 | |
| 45 | <!-- For audio calls, if respond via SMS is enabled: |
| 46 | - Answer (drag right) |
| 47 | - Respond via SMS (drag up) |
| 48 | - Decline (drag left) --> |
| 49 | <array name="incoming_call_widget_audio_with_sms_targets"> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 50 | <item>@drawable/ic_lockscreen_answer</item> |
| 51 | <item>@drawable/ic_lockscreen_text</item> |
| 52 | <item>@drawable/ic_lockscreen_decline</item> |
| 53 | <item>@null</item>" |
| 54 | </array> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 55 | <array name="incoming_call_widget_audio_with_sms_target_descriptions"> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 56 | <item>@string/description_target_answer</item> |
| 57 | <item>@string/description_target_send_sms</item> |
| 58 | <item>@string/description_target_decline</item> |
| 59 | <item>@null</item>" |
| 60 | </array> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 61 | <array name="incoming_call_widget_audio_with_sms_direction_descriptions"> |
Christine Chen | 1bd21c5 | 2013-10-16 10:42:15 -0700 | [diff] [blame] | 62 | <item>@string/description_direction_right</item> |
| 63 | <item>@string/description_direction_up</item> |
| 64 | <item>@string/description_direction_left</item> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 65 | <item>@null</item> |
| 66 | </array> |
| 67 | |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 68 | <!-- For video calls, if respond via SMS is disabled: |
| 69 | - Answer as video call (drag right) |
| 70 | - Decline (drag left) |
| 71 | - Answer as audio call (drag down) --> |
| 72 | <array name="incoming_call_widget_video_without_sms_targets"> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 73 | <item>@drawable/ic_lockscreen_answer</item> |
| 74 | <item>@null</item> |
| 75 | <item>@drawable/ic_lockscreen_decline</item> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 76 | <item>@drawable/ic_lockscreen_answer_video</item> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 77 | </array> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 78 | <array name="incoming_call_widget_video_without_sms_target_descriptions"> |
Tyler Gunn | cb7cae6 | 2015-05-13 14:29:02 -0700 | [diff] [blame] | 79 | <item>@string/description_target_answer_audio_call</item> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 80 | <item>@null</item> |
| 81 | <item>@string/description_target_decline</item> |
Tyler Gunn | cb7cae6 | 2015-05-13 14:29:02 -0700 | [diff] [blame] | 82 | <item>@string/description_target_answer_video_call</item> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 83 | </array> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 84 | <array name="incoming_call_widget_video_without_sms_direction_descriptions"> |
Christine Chen | 1bd21c5 | 2013-10-16 10:42:15 -0700 | [diff] [blame] | 85 | <item>@string/description_direction_right</item> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 86 | <item>@null</item> |
Christine Chen | 1bd21c5 | 2013-10-16 10:42:15 -0700 | [diff] [blame] | 87 | <item>@string/description_direction_left</item> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 88 | <item>@string/description_direction_down</item> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 89 | </array> |
| 90 | |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 91 | <!-- For video calls, if respond via SMS is enabled: |
Tyler Gunn | cb7cae6 | 2015-05-13 14:29:02 -0700 | [diff] [blame] | 92 | - Answer as audio call (drag right) |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 93 | - Respond via SMS (drag up) |
| 94 | - Decline (drag left) |
Tyler Gunn | cb7cae6 | 2015-05-13 14:29:02 -0700 | [diff] [blame] | 95 | - Answer as video call (drag down) --> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 96 | <array name="incoming_call_widget_video_with_sms_targets"> |
Tyler Gunn | cb7cae6 | 2015-05-13 14:29:02 -0700 | [diff] [blame] | 97 | <item>@drawable/ic_lockscreen_answer</item> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 98 | <item>@drawable/ic_lockscreen_text</item> |
| 99 | <item>@drawable/ic_lockscreen_decline</item> |
Tyler Gunn | cb7cae6 | 2015-05-13 14:29:02 -0700 | [diff] [blame] | 100 | <item>@drawable/ic_lockscreen_answer_video</item> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 101 | </array> |
| 102 | <array name="incoming_call_widget_video_with_sms_target_descriptions"> |
Tyler Gunn | cb7cae6 | 2015-05-13 14:29:02 -0700 | [diff] [blame] | 103 | <item>@string/description_target_answer_audio_call</item> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 104 | <item>@string/description_target_send_sms</item> |
| 105 | <item>@string/description_target_decline</item> |
Tyler Gunn | cb7cae6 | 2015-05-13 14:29:02 -0700 | [diff] [blame] | 106 | <item>@string/description_target_answer_video_call</item> |
Andrew Lee | c0be1fa | 2014-07-11 15:50:00 -0700 | [diff] [blame] | 107 | </array> |
| 108 | <array name="incoming_call_widget_video_with_sms_direction_descriptions"> |
| 109 | <item>@string/description_direction_right</item> |
| 110 | <item>@string/description_direction_up</item> |
| 111 | <item>@string/description_direction_left</item> |
| 112 | <item>@string/description_direction_down</item> |
| 113 | </array> |
Andrew Lee | 9c98346 | 2014-08-11 14:44:18 -0700 | [diff] [blame] | 114 | |
Tyler Gunn | ec3a080 | 2015-04-30 10:39:11 -0700 | [diff] [blame] | 115 | <!-- For accept/reject upgrade to video in active video call |
Andrew Lee | 9c98346 | 2014-08-11 14:44:18 -0700 | [diff] [blame] | 116 | - Accept upgrade to video request (drag right) |
Tyler Gunn | ec3a080 | 2015-04-30 10:39:11 -0700 | [diff] [blame] | 117 | - Decline upgrade to video request (drag left)--> |
| 118 | <array name="incoming_call_widget_video_request_targets"> |
Andrew Lee | 9c98346 | 2014-08-11 14:44:18 -0700 | [diff] [blame] | 119 | <item>@drawable/ic_lockscreen_answer_video</item> |
Tyler Gunn | ec3a080 | 2015-04-30 10:39:11 -0700 | [diff] [blame] | 120 | <item>@drawable/ic_lockscreen_decline_video</item> |
Andrew Lee | 9c98346 | 2014-08-11 14:44:18 -0700 | [diff] [blame] | 121 | </array> |
Tyler Gunn | ec3a080 | 2015-04-30 10:39:11 -0700 | [diff] [blame] | 122 | |
| 123 | <array name="incoming_call_widget_video_request_target_descriptions"> |
Andrew Lee | 9c98346 | 2014-08-11 14:44:18 -0700 | [diff] [blame] | 124 | <item>@string/description_target_accept_upgrade_to_video_request</item> |
| 125 | <item>@null</item> |
| 126 | <item>@string/description_target_decline_upgrade_to_video_request</item> |
| 127 | <item>@null</item>" |
| 128 | </array> |
Tyler Gunn | ec3a080 | 2015-04-30 10:39:11 -0700 | [diff] [blame] | 129 | <array name="incoming_call_widget_video_request_target_direction_descriptions"> |
Andrew Lee | 9c98346 | 2014-08-11 14:44:18 -0700 | [diff] [blame] | 130 | <item>@string/description_direction_right</item> |
| 131 | <item>@null</item> |
| 132 | <item>@string/description_direction_left</item> |
| 133 | <item>@null</item> |
| 134 | </array> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 135 | </resources> |