- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 Android 中为 ViewFlipper 创建动画。我制作了 xml 文件,我知道尝试创建动画,但 eclipse 给我一个错误。
The method loadAnimation(Context, int) in the type AnimationUtils is not applicable for the arguments (LoafMakingTutorial, View)
这是代码
Animation right_in = AnimationUtils.loadAnimation(LoafMakingTutorial.this,findViewById(R.anim.right_flip_in));
问题是什么?我已经尝试过 eclipse 提到的解决方案,但没有一个有效。
最佳答案
此消息准确地向您展示了您需要了解的内容:
类型 AnimationUtils 中的方法 loadAnimation(Context, int) 不适用于参数 (LoafMakingTutorial, View)
您不能将 View 用作需要 int 的方法的参数。只需更改 findViewById
部分。如果您已经拥有View
的ID,则不必寻找ID 背后的View
.
关于Android LoadAnimation 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15794992/
我想在 Android 中为 ViewFlipper 创建动画。我制作了 xml 文件,我知道尝试创建动画,但 eclipse 给我一个错误。 The method loadAnimation(Con
当我尝试使用以下代码创建动画时,出现以下错误: The method loadAnimation(context,int) in the type AnimationUtils is not appl
如果有人能向我解释为什么这样做,我将不胜感激: private void startAnimating() { TextView logo1 = (TextView) findViewById
这个问题在这里已经有了答案: What is a NullPointerException, and how do I fix it? (12 个答案) 关闭 7 年前。 我创建了一个 fragme
我是一名优秀的程序员,十分优秀!