aboutsummaryrefslogtreecommitdiff
path: root/testapps/customPropAnimTest/src/com/android/custompropertyanimation/CustomPropertyAnimationActivity.java
diff options
context:
space:
mode:
Diffstat (limited to 'testapps/customPropAnimTest/src/com/android/custompropertyanimation/CustomPropertyAnimationActivity.java')
-rw-r--r--testapps/customPropAnimTest/src/com/android/custompropertyanimation/CustomPropertyAnimationActivity.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/testapps/customPropAnimTest/src/com/android/custompropertyanimation/CustomPropertyAnimationActivity.java b/testapps/customPropAnimTest/src/com/android/custompropertyanimation/CustomPropertyAnimationActivity.java
deleted file mode 100644
index b1b91b981..000000000
--- a/testapps/customPropAnimTest/src/com/android/custompropertyanimation/CustomPropertyAnimationActivity.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.android.custompropertyanimation;
-
-import android.animation.ObjectAnimator;
-import android.app.Activity;
-import android.os.Bundle;
-import android.widget.LinearLayout;
-
-public class CustomPropertyAnimationActivity extends Activity {
- /** Called when the activity is first created. */
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- LinearLayout container = (LinearLayout) findViewById(R.id.container);
-
- MyView view = new MyView(this);
- container.addView(view);
-
- ObjectAnimator anim = ObjectAnimator.ofFloat(view, "foo", 1);
- anim.start();
- }
-} \ No newline at end of file