1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4* Copyright (C) 4008 The Android Open Source Project 5* 6* Licensed under the Apache License, Version 2.0 (the "License"); 7* you may not use this file except in compliance with the License. 8* You may obtain a copy of the License at 9* 10* http://www.apache.org/licenses/LICENSE-2.0 11* 12* Unless required by applicable law or agreed to in writing, software 13* distributed under the License is distributed on an "AS IS" BASIS, 14* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15* See the License for the specific language governing permissions and 16* limitations under the License. 17*/ 18--> 19 20<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 21 22 <!-- Wallpapers showing a music visualizer --> 23 <string name="wallpaper_vis1">Visualizer</string> 24 <string name="wallpaper_vis2">Waveform</string> 25 <string name="wallpaper_vis3">Spectrum</string> 26 <string name="wallpaper_vis4">VU meter</string> 27 <string name="wallpaper_vis5">Many</string> 28 29 <!-- x,y,z tuples for the points defining the object --> 30 <!-- stored as strings for easier human readability --> 31 <string-array name="points"> 32 <item>"-400 -400 -400"</item> 33 <item>"400 -400 -400"</item> 34 <item>"400 400 -400"</item> 35 <item>"-400 400 -400"</item> 36 <item>"-400 -400 400"</item> 37 <item>"400 -400 400"</item> 38 <item>"400 400 400"</item> 39 <item>"-400 400 400"</item> 40 </string-array> 41 42 <!-- start,end point index tuples of the lines defining the object --> 43 <string-array name="lines"> 44 <!-- lines forming one face --> 45 <item>"0 1"</item> 46 <item>"1 2"</item> 47 <item>"2 3"</item> 48 <item>"3 0"</item> 49 50 <!-- lines forming the opposite face --> 51 <item>"4 5"</item> 52 <item>"5 6"</item> 53 <item>"6 7"</item> 54 <item>"7 4"</item> 55 56 <!-- lines connecting the two faces --> 57 <item>"0 4"</item> 58 <item>"1 5"</item> 59 <item>"2 6"</item> 60 <item>"3 7"</item> 61 </string-array> 62 63</resources> 64