OSDN Git Service

Various fixes
authorChet Haase <chet@google.com>
Thu, 7 Oct 2010 16:27:20 +0000 (09:27 -0700)
committerChet Haase <chet@google.com>
Thu, 7 Oct 2010 19:29:12 +0000 (12:29 -0700)
Change-Id: I70509d19d1df01e998de4804bc7c1e1899ad8dee

samples/ApiDemos/res/anim/object_animator.xml [moved from samples/ApiDemos/res/anim/property_animator.xml with 92% similarity]
samples/ApiDemos/res/layout/animator_custom_evaluator.xml [new file with mode: 0644]
samples/ApiDemos/src/com/example/android/apis/animation/AnimationLoading.java
samples/ApiDemos/src/com/example/android/apis/animation/CustomEvaluator.java

@@ -14,7 +14,7 @@
      limitations under the License.
 -->
 
-<property xmlns:android="http://schemas.android.com/apk/res/android"
+<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
     android:duration="1000"
     android:valueFrom="0"
     android:valueTo="200"
diff --git a/samples/ApiDemos/res/layout/animator_custom_evaluator.xml b/samples/ApiDemos/res/layout/animator_custom_evaluator.xml
new file mode 100644 (file)
index 0000000..42856d2
--- /dev/null
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 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:orientation="vertical"
+    android:layout_width="fill_parent"
+    android:layout_height="fill_parent"
+    android:id="@+id/container"
+    >
+    <LinearLayout
+        android:orientation="horizontal"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        >
+        <Button
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="Play"
+            android:id="@+id/startButton"
+            />
+    </LinearLayout>
+</LinearLayout>
index 496a004..f2ef3d3 100644 (file)
@@ -85,7 +85,7 @@ public class AnimationLoading extends Activity {
             if (animation == null) {
                 ObjectAnimator anim =
                         (ObjectAnimator) AnimatorInflater.
-                                loadAnimator(getApplicationContext(), R.anim.property_animator);
+                                loadAnimator(getApplicationContext(), R.anim.object_animator);
                 anim.addUpdateListener(this);
                 anim.setTarget(balls.get(0));
 
index 7b11c80..d1018c9 100644 (file)
@@ -43,7 +43,7 @@ public class CustomEvaluator extends Activity {
     @Override
     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
-        setContentView(R.layout.animation_reversing);
+        setContentView(R.layout.animator_custom_evaluator);
         LinearLayout container = (LinearLayout) findViewById(R.id.container);
         final MyAnimationView animView = new MyAnimationView(this);
         container.addView(animView);