summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/VectorDrawableTest/AndroidManifest.xml11
-rw-r--r--tests/VectorDrawableTest/src/com/android/test/dynamic/ScaleDrawableTests.java97
2 files changed, 107 insertions, 1 deletions
diff --git a/tests/VectorDrawableTest/AndroidManifest.xml b/tests/VectorDrawableTest/AndroidManifest.xml
index 890214f2dc03..613660c13700 100644
--- a/tests/VectorDrawableTest/AndroidManifest.xml
+++ b/tests/VectorDrawableTest/AndroidManifest.xml
@@ -99,7 +99,7 @@
</activity>
<activity
android:name="VectorCheckbox"
- android:label="On a Checkbox" >
+ android:label="Basic static vector drawables" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -115,6 +115,15 @@
<category android:name="com.android.test.dynamic.TEST" />
</intent-filter>
</activity>
+ <activity
+ android:name="ScaleDrawableTests"
+ android:label="Scale Type Test" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="com.android.test.dynamic.TEST" />
+ </intent-filter>
+ </activity>
</application>
</manifest> \ No newline at end of file
diff --git a/tests/VectorDrawableTest/src/com/android/test/dynamic/ScaleDrawableTests.java b/tests/VectorDrawableTest/src/com/android/test/dynamic/ScaleDrawableTests.java
new file mode 100644
index 000000000000..07ca2eb44106
--- /dev/null
+++ b/tests/VectorDrawableTest/src/com/android/test/dynamic/ScaleDrawableTests.java
@@ -0,0 +1,97 @@
+/*
+ * 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.
+ */
+package com.android.test.dynamic;
+
+import android.app.Activity;
+import android.os.Bundle;
+import android.view.ViewGroup.LayoutParams;
+import android.widget.ImageView;
+import android.widget.TextView;
+import android.widget.GridLayout;
+import android.widget.ScrollView;
+
+@SuppressWarnings({"UnusedDeclaration"})
+public class ScaleDrawableTests extends Activity {
+ private static final String LOGCAT = "VectorDrawable1";
+
+ private String[] scaleTypes = {
+ "MATRIX (0)",
+ "FIT_XY (1)",
+ "FIT_START (2)",
+ "FIT_CENTER (3)",
+ "FIT_END (4)",
+ "CENTER (5)",
+ "CENTER_CROP (6)",
+ "CENTER_INSIDE (7)"
+ };
+
+ protected int[] icon = {
+ R.drawable.bitmap_drawable01,
+ R.drawable.bitmap_drawable01,
+ R.drawable.bitmap_drawable01,
+ R.drawable.bitmap_drawable01,
+ R.drawable.bitmap_drawable01,
+ R.drawable.bitmap_drawable01,
+ R.drawable.bitmap_drawable01,
+ R.drawable.bitmap_drawable01,
+ };
+
+ protected int[] vector_icons = {
+ R.drawable.vector_drawable16,
+ R.drawable.vector_drawable16,
+ R.drawable.vector_drawable16,
+ R.drawable.vector_drawable16,
+ R.drawable.vector_drawable16,
+ R.drawable.vector_drawable16,
+ R.drawable.vector_drawable16,
+ R.drawable.vector_drawable16,
+ R.drawable.vector_drawable16,
+ };
+
+
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ ScrollView scrollView = new ScrollView(this);
+ GridLayout container = new GridLayout(this);
+ scrollView.addView(container);
+ container.setColumnCount(3);
+ container.setBackgroundColor(0xFF888888);
+
+ LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
+ params.width = 400;
+ params.height = 300;
+
+ for (int i = 0; i < icon.length; i++) {
+ TextView t = new TextView(this);
+ t.setText(scaleTypes[i]);
+ container.addView(t);
+
+ ImageView png_view = new ImageView(this);
+ png_view.setLayoutParams(params);
+ png_view.setScaleType(ImageView.ScaleType.values()[i]);
+ png_view.setImageResource(icon[i]);
+ container.addView(png_view);
+
+ ImageView view = new ImageView(this);
+ view.setLayoutParams(params);
+ view.setScaleType(ImageView.ScaleType.values()[i]);
+ view.setImageResource(vector_icons[i]);
+ container.addView(view);
+ }
+
+ setContentView(scrollView);
+ }
+}