summaryrefslogtreecommitdiffstats
path: root/tests/VectorDrawableTest/res
diff options
context:
space:
mode:
authorztenghui <ztenghui@google.com>2014-10-07 13:11:22 -0700
committerztenghui <ztenghui@google.com>2014-10-08 15:51:37 -0700
commit4cc3e2704a93197213ca0978b8c940abcb59e49a (patch)
tree6f19eb407d9fc3fccb546098148485ff2b01d29e /tests/VectorDrawableTest/res
parent384ff9ef5d2dc1278f63eb7e0f42ad03a9163dec (diff)
downloadframeworks_base-4cc3e2704a93197213ca0978b8c940abcb59e49a.zip
frameworks_base-4cc3e2704a93197213ca0978b8c940abcb59e49a.tar.gz
frameworks_base-4cc3e2704a93197213ca0978b8c940abcb59e49a.tar.bz2
Support dot separation as the svg path data did.
Like "0.0.0" will be separated to "0.0 .0" now, just to make sure we are more complied with svg path data. b/17892882 Change-Id: Id7b64e9882f5174aa794a0256e2a29d66c724876
Diffstat (limited to 'tests/VectorDrawableTest/res')
-rw-r--r--tests/VectorDrawableTest/res/drawable/vector_drawable29.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/VectorDrawableTest/res/drawable/vector_drawable29.xml b/tests/VectorDrawableTest/res/drawable/vector_drawable29.xml
new file mode 100644
index 0000000..c0e9b2a
--- /dev/null
+++ b/tests/VectorDrawableTest/res/drawable/vector_drawable29.xml
@@ -0,0 +1,28 @@
+<!--
+ Copyright (C) 2014 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.
+-->
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:height="48dp"
+ android:width="48dp"
+ android:viewportHeight="1"
+ android:viewportWidth="1" >
+
+ <group>
+ <path
+ android:name="box1"
+ android:pathData="l0.0.0.5.0.0.5-0.5.0.0-.5z"
+ android:fillColor="#ff00ff00"/>
+ </group>
+</vector>