diff options
author | Jorim Jaggi <jjaggi@google.com> | 2015-04-01 13:37:39 -0700 |
---|---|---|
committer | Jorim Jaggi <jjaggi@google.com> | 2015-04-03 11:12:44 -0700 |
commit | 6e9fa1a4b74dc4e35470739cfd64881cb9bcc7b1 (patch) | |
tree | 1da9f58bf17952a7657bcc4d727102cfd94d539b /tests/LegacyAssistant/res | |
parent | 2fdeeabe78b0f54f3163b1b3741ac813828b3511 (diff) | |
download | frameworks_base-6e9fa1a4b74dc4e35470739cfd64881cb9bcc7b1.zip frameworks_base-6e9fa1a4b74dc4e35470739cfd64881cb9bcc7b1.tar.gz frameworks_base-6e9fa1a4b74dc4e35470739cfd64881cb9bcc7b1.tar.bz2 |
Add test assist to implement motion study
This change introduces another test VoiceInteractionService, Assist,
to test the full SystemUI -> assist layer motion when invoking
assist.
The old assist test project was renamed to LegacyAssist.
Change-Id: Iddf8a36a76083625f8aa4faecef1930e9952d05b
Diffstat (limited to 'tests/LegacyAssistant/res')
-rw-r--r-- | tests/LegacyAssistant/res/drawable-hdpi/ic_action_assist_activated.png | bin | 0 -> 13757 bytes | |||
-rw-r--r-- | tests/LegacyAssistant/res/drawable-hdpi/ic_action_assist_normal.png | bin | 0 -> 5732 bytes | |||
-rw-r--r-- | tests/LegacyAssistant/res/drawable-mdpi/ic_action_assist_activated.png | bin | 0 -> 8786 bytes | |||
-rw-r--r-- | tests/LegacyAssistant/res/drawable-mdpi/ic_action_assist_normal.png | bin | 0 -> 4480 bytes | |||
-rw-r--r-- | tests/LegacyAssistant/res/drawable-xhdpi/ic_action_assist_activated.png | bin | 0 -> 19647 bytes | |||
-rw-r--r-- | tests/LegacyAssistant/res/drawable-xhdpi/ic_action_assist_normal.png | bin | 0 -> 7327 bytes | |||
-rw-r--r-- | tests/LegacyAssistant/res/drawable/ic_action_assist.xml | 36 | ||||
-rw-r--r-- | tests/LegacyAssistant/res/layout/assist_intent_activity.xml | 43 | ||||
-rw-r--r-- | tests/LegacyAssistant/res/values/strings.xml | 20 |
9 files changed, 99 insertions, 0 deletions
diff --git a/tests/LegacyAssistant/res/drawable-hdpi/ic_action_assist_activated.png b/tests/LegacyAssistant/res/drawable-hdpi/ic_action_assist_activated.png Binary files differnew file mode 100644 index 0000000..cea8ac4 --- /dev/null +++ b/tests/LegacyAssistant/res/drawable-hdpi/ic_action_assist_activated.png diff --git a/tests/LegacyAssistant/res/drawable-hdpi/ic_action_assist_normal.png b/tests/LegacyAssistant/res/drawable-hdpi/ic_action_assist_normal.png Binary files differnew file mode 100644 index 0000000..bb7702d --- /dev/null +++ b/tests/LegacyAssistant/res/drawable-hdpi/ic_action_assist_normal.png diff --git a/tests/LegacyAssistant/res/drawable-mdpi/ic_action_assist_activated.png b/tests/LegacyAssistant/res/drawable-mdpi/ic_action_assist_activated.png Binary files differnew file mode 100644 index 0000000..5841d82 --- /dev/null +++ b/tests/LegacyAssistant/res/drawable-mdpi/ic_action_assist_activated.png diff --git a/tests/LegacyAssistant/res/drawable-mdpi/ic_action_assist_normal.png b/tests/LegacyAssistant/res/drawable-mdpi/ic_action_assist_normal.png Binary files differnew file mode 100644 index 0000000..3851f03 --- /dev/null +++ b/tests/LegacyAssistant/res/drawable-mdpi/ic_action_assist_normal.png diff --git a/tests/LegacyAssistant/res/drawable-xhdpi/ic_action_assist_activated.png b/tests/LegacyAssistant/res/drawable-xhdpi/ic_action_assist_activated.png Binary files differnew file mode 100644 index 0000000..778db19 --- /dev/null +++ b/tests/LegacyAssistant/res/drawable-xhdpi/ic_action_assist_activated.png diff --git a/tests/LegacyAssistant/res/drawable-xhdpi/ic_action_assist_normal.png b/tests/LegacyAssistant/res/drawable-xhdpi/ic_action_assist_normal.png Binary files differnew file mode 100644 index 0000000..ad49125 --- /dev/null +++ b/tests/LegacyAssistant/res/drawable-xhdpi/ic_action_assist_normal.png diff --git a/tests/LegacyAssistant/res/drawable/ic_action_assist.xml b/tests/LegacyAssistant/res/drawable/ic_action_assist.xml new file mode 100644 index 0000000..05c4bf5 --- /dev/null +++ b/tests/LegacyAssistant/res/drawable/ic_action_assist.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2012 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. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item + android:state_enabled="true" + android:state_active="false" + android:state_focused="false" + android:drawable="@drawable/ic_action_assist_normal" /> + + <item + android:state_enabled="true" + android:state_active="true" + android:state_focused="false" + android:drawable="@drawable/ic_action_assist_activated" /> + + <item + android:state_enabled="true" + android:state_active="false" + android:state_focused="true" + android:drawable="@drawable/ic_action_assist_activated" /> + +</selector> diff --git a/tests/LegacyAssistant/res/layout/assist_intent_activity.xml b/tests/LegacyAssistant/res/layout/assist_intent_activity.xml new file mode 100644 index 0000000..49785bc --- /dev/null +++ b/tests/LegacyAssistant/res/layout/assist_intent_activity.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +** +** Copyright 2009, 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. +*/ +--> + +<!-- This is the general lock screen which shows information about the + state of the device, as well as instructions on how to get past it + depending on the state of the device. It is the same for landscape + and portrait.--> +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center"> + + <TextView android:id="@+id/label" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/search_label" + /> + + <EditText android:id="@+id/search_input" + android:layout_width="match_parent" + android:layout_height="wrap_content" + /> + +</LinearLayout> + diff --git a/tests/LegacyAssistant/res/values/strings.xml b/tests/LegacyAssistant/res/values/strings.xml new file mode 100644 index 0000000..a59c1ef --- /dev/null +++ b/tests/LegacyAssistant/res/values/strings.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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> + <string name="activity_title">Assistant</string> + <string name="search_label">Orilla Search Engine</string> +</resources> |