public class BouncingBallActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
View bouncingBallView = new BouncingBallView(this);
super.onCreate(savedInstanceState);
setContentView(bouncingBallView);
}
}
答案 0 :(得分:1)
请注意:
manifest
文件BouncingBallView(上下文上下文)
{ 超级(上下文);
}
BouncingBallView
必须延长View
检查所有代码。检查你是否在任何地方都返回null。
发布您的logcat跟踪,并尝试确定您出错的地方。
答案 1 :(得分:0)
View bouncingBallView = new BouncingBallView(this);
在super.onCreate(savedInstanceState);