当我输入 ImageView 或 AnimationDrawable 时,我收到一串错误宣告:
无法将AnimationDrawable解析为某种类型。
第14行Java问题
我不明白,我是否需要创建另一个类?或者,AnimationDrawables不会进入 filename .java?
如果我确实需要创建另一个课程,你能告诉我怎么做吗?
答案 0 :(得分:1)
您是否导入这些条款?
// this must be placed at beginning of your file
// after the 'package' statemen
import android.widget.ImageView;
import android.graphics.drawable.AnimationDrawable;
如果您使用的是Eclipse,则无需手动导入这些类:您可以按 Ctrl + Shift + i ,它会自动添加您需要的 imports 语句(它也会删除您未使用的语句)。
答案 1 :(得分:0)
是的,您需要声明您正在使用的视图 喜欢,对于imageview
import android.widget.ImageView
同样适用于textview,
import android.widget.TextView