diff options
author | Jeff Brown <jeffbrown@google.com> | 2013-05-29 14:59:46 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2013-06-18 15:32:41 -0700 |
commit | 8f3b1307678fcd1896c7fb8ba4cc20553dc032e8 (patch) | |
tree | 9935dd8edf3a8380256502a132d040a4fd607df8 /tests/AccessoryDisplay/source/res | |
parent | a506a6ec94863a35acca9feb165db76ddac3892c (diff) | |
download | frameworks_base-8f3b1307678fcd1896c7fb8ba4cc20553dc032e8.zip frameworks_base-8f3b1307678fcd1896c7fb8ba4cc20553dc032e8.tar.gz frameworks_base-8f3b1307678fcd1896c7fb8ba4cc20553dc032e8.tar.bz2 |
Add test for streaming display contents to an accessory.
There are two applications: a source and a sink.
They should be installed on two separate Android devices.
Then connect the source device to the sink device using
a USB OTG cable.
Bug: 9192512
Change-Id: I99b552026684abbfd69cb13ab324e72fa16c36ab
Diffstat (limited to 'tests/AccessoryDisplay/source/res')
-rwxr-xr-x | tests/AccessoryDisplay/source/res/drawable-hdpi/ic_app.png | bin | 0 -> 3608 bytes | |||
-rw-r--r-- | tests/AccessoryDisplay/source/res/drawable-mdpi/ic_app.png | bin | 0 -> 5198 bytes | |||
-rw-r--r-- | tests/AccessoryDisplay/source/res/layout/presentation_content.xml | 30 | ||||
-rw-r--r-- | tests/AccessoryDisplay/source/res/layout/source_activity.xml | 24 | ||||
-rw-r--r-- | tests/AccessoryDisplay/source/res/values/strings.xml | 19 | ||||
-rw-r--r-- | tests/AccessoryDisplay/source/res/xml/usb_accessory_filter.xml | 20 |
6 files changed, 93 insertions, 0 deletions
diff --git a/tests/AccessoryDisplay/source/res/drawable-hdpi/ic_app.png b/tests/AccessoryDisplay/source/res/drawable-hdpi/ic_app.png Binary files differnew file mode 100755 index 0000000..66a1984 --- /dev/null +++ b/tests/AccessoryDisplay/source/res/drawable-hdpi/ic_app.png diff --git a/tests/AccessoryDisplay/source/res/drawable-mdpi/ic_app.png b/tests/AccessoryDisplay/source/res/drawable-mdpi/ic_app.png Binary files differnew file mode 100644 index 0000000..5ae7701 --- /dev/null +++ b/tests/AccessoryDisplay/source/res/drawable-mdpi/ic_app.png diff --git a/tests/AccessoryDisplay/source/res/layout/presentation_content.xml b/tests/AccessoryDisplay/source/res/layout/presentation_content.xml new file mode 100644 index 0000000..bf9566a --- /dev/null +++ b/tests/AccessoryDisplay/source/res/layout/presentation_content.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 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. +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <android.opengl.GLSurfaceView android:id="@+id/surface_view" + android:layout_width="match_parent" + android:layout_height="match_parent" /> + + <Button android:id="@+id/explode_button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_centerHorizontal="true" + android:layout_alignParentBottom="true" + android:text="Explode!" /> +</RelativeLayout> diff --git a/tests/AccessoryDisplay/source/res/layout/source_activity.xml b/tests/AccessoryDisplay/source/res/layout/source_activity.xml new file mode 100644 index 0000000..ff2b818 --- /dev/null +++ b/tests/AccessoryDisplay/source/res/layout/source_activity.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 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. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical"> + <TextView android:id="@+id/logTextView" + android:layout_width="match_parent" + android:layout_height="match_parent" /> +</LinearLayout> diff --git a/tests/AccessoryDisplay/source/res/values/strings.xml b/tests/AccessoryDisplay/source/res/values/strings.xml new file mode 100644 index 0000000..0b488df --- /dev/null +++ b/tests/AccessoryDisplay/source/res/values/strings.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 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 xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="app_name">Accessory Display Source</string> +</resources> diff --git a/tests/AccessoryDisplay/source/res/xml/usb_accessory_filter.xml b/tests/AccessoryDisplay/source/res/xml/usb_accessory_filter.xml new file mode 100644 index 0000000..5313b4e --- /dev/null +++ b/tests/AccessoryDisplay/source/res/xml/usb_accessory_filter.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 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> + <!-- Match all devices --> + <usb-accessory manufacturer="Android" model="Accessory Display" /> +</resources> |