Various fixes
Change-Id: I70509d19d1df01e998de4804bc7c1e1899ad8dee
This commit is contained in:
@@ -14,7 +14,7 @@
|
|||||||
limitations under the License.
|
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:duration="1000"
|
||||||
android:valueFrom="0"
|
android:valueFrom="0"
|
||||||
android:valueTo="200"
|
android:valueTo="200"
|
||||||
34
samples/ApiDemos/res/layout/animator_custom_evaluator.xml
Normal file
34
samples/ApiDemos/res/layout/animator_custom_evaluator.xml
Normal file
@@ -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>
|
||||||
@@ -85,7 +85,7 @@ public class AnimationLoading extends Activity {
|
|||||||
if (animation == null) {
|
if (animation == null) {
|
||||||
ObjectAnimator anim =
|
ObjectAnimator anim =
|
||||||
(ObjectAnimator) AnimatorInflater.
|
(ObjectAnimator) AnimatorInflater.
|
||||||
loadAnimator(getApplicationContext(), R.anim.property_animator);
|
loadAnimator(getApplicationContext(), R.anim.object_animator);
|
||||||
anim.addUpdateListener(this);
|
anim.addUpdateListener(this);
|
||||||
anim.setTarget(balls.get(0));
|
anim.setTarget(balls.get(0));
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ public class CustomEvaluator extends Activity {
|
|||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle savedInstanceState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
setContentView(R.layout.animation_reversing);
|
setContentView(R.layout.animator_custom_evaluator);
|
||||||
LinearLayout container = (LinearLayout) findViewById(R.id.container);
|
LinearLayout container = (LinearLayout) findViewById(R.id.container);
|
||||||
final MyAnimationView animView = new MyAnimationView(this);
|
final MyAnimationView animView = new MyAnimationView(this);
|
||||||
container.addView(animView);
|
container.addView(animView);
|
||||||
|
|||||||
Reference in New Issue
Block a user