TextView动画

时间:2014-08-30 18:48:35

标签: android animation textview

我找到了一个很好的外部库来实现许多漂亮的Textview动画。链接是这样的:https://github.com/daimajia/AndroidViewAnimations 我有一个问题来实现它。我已经正确导入了所有3个库,我正确地使用了dev的例子中的函数:

YoYo.with(Techniques.Tada).duration(700).playOn(findViewById(R.id.TextView1));

Eclipse不会将任何问题分解为我。但是当我启动应用程序时,它会崩溃

P.S。抱歉我的英语不好,我是意大利人:(

编辑1:

logcat的:

FATAL EXCEPTION: main
java.lang.IllegalStateException: Could not execute method of the activity
at android.app.ActivityThread.main(ActivityThread.java:4960)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1038)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:805)
at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
Caused by: java.lang.reflect.InvocationTargetException
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at android.view.View$1.onClick(View.java:3675)
... 12 more
Caused by: java.lang.NoClassDefFoundError:com.daimajia.androidanimations.library.Techniques
enter code here

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。我的问题是缺少依赖AndroidEasingFunctions-1.0.0。请确保所有依赖项都正确包含在项目中。请参阅https://github.com/daimajia/AndroidViewAnimations