5

我正在尝试在 Android 上创建游戏,但视图的实例化存在问题。我正在使用膨胀视图。

这是我的视图代码:

public class GameView extends TableLayout {

public GameView(Context context, AttributeSet attrs) {
    super(context, attrs);
}

对于活动

public class GameActivity extends Activity {

private GameView view;

@Override
public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    this.view = (GameView) View.inflate(this,R.layout.game, null);
}

这是错误

D/dalvikvm( 6176): newInstance failed: no <init>()
D/AndroidRuntime( 6176): Shutting down VM
W/dalvikvm( 6176): threadid=1: thread exiting with uncaught exception (group=0x41a80700)
E/AndroidRuntime( 6176): FATAL EXCEPTION: main
E/AndroidRuntime( 6176): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.android.homework.em.go/com.android.homework.em.go.GameView}: java.lang.InstantiationException: can't instantiate class com.android.homework.em.go.GameView; no empty constructor
E/AndroidRuntime( 6176):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2137)
E/AndroidRuntime( 6176):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2261)
E/AndroidRuntime( 6176):    at android.app.ActivityThread.access$600(ActivityThread.java:141)
E/AndroidRuntime( 6176):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1256)
E/AndroidRuntime( 6176):    at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 6176):    at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 6176):    at android.app.ActivityThread.main(ActivityThread.java:5103)
E/AndroidRuntime( 6176):    at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 6176):    at java.lang.reflect.Method.invoke(Method.java:525)
E/AndroidRuntime( 6176):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
E/AndroidRuntime( 6176):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
E/AndroidRuntime( 6176):    at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 6176): Caused by: java.lang.InstantiationException: can't instantiate class com.android.homework.em.go.GameView; no empty constructor
E/AndroidRuntime( 6176):    at java.lang.Class.newInstanceImpl(Native Method)
E/AndroidRuntime( 6176):    at java.lang.Class.newInstance(Class.java:1130)
E/AndroidRuntime( 6176):    at android.app.Instrumentation.newActivity(Instrumentation.java:1061)
E/AndroidRuntime( 6176):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2128)
E/AndroidRuntime( 6176):    ... 11 more
W/ActivityManager(  436):   Force finishing activity com.android.homework.em.go/.GameView

谢谢你的帮助 !

编辑 :

1)问题是,当我创建一个空的构造函数时,我无法编译,因为它说构造函数与TableLayout的构造函数不兼容。

2)我使用 View.inflate 因为我在这个教程上找到了它:http ://www.therealjoshua.com/2012/07/android-architecture-part-10-the-activity-revisited/ 我想要的是为我的活动设置一个视图,该视图部分由 xml 文件 (layout.game) 描述,部分由 GameView.java 类编程创建 我该怎么做?

4

4 回答 4

7

事实上,问题是因为我没有在清单文件中调用正确的活动。我调用了 GameView 而不是 GameActivity。

于 2013-10-30T15:15:17.393 回答
3

我试图用一个抽象类开始一个活动。

于 2016-03-22T16:59:30.157 回答
2

您可以添加一个空的构造函数:

public GameView() {
    super();
}

但是您确定您不是要做更多类似的事情:

setContentView(R.layout.game);
this.view = (GameView) findViewById(R.id.gameView);

在活动的创建中手动膨胀视图似乎有点奇怪。

于 2013-10-29T19:34:41.567 回答
1

尝试这个

@Override
public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.game);
    this.view = (GameView) findViewById(R.id.gameView);
}

您必须在布局上为您的视图找到 id

在你的课堂上确保你有

public GameView(Context context) {
    super(context);
}

public GameView(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public GameView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    if (widthMeasureSpec > 3000)
        widthMeasureSpec = widthMeasureSpec & 0xfff;
    if (heightMeasureSpec > 3000)
        heightMeasureSpec = heightMeasureSpec & 0xfff;
    setMeasuredDimension(widthMeasureSpec, heightMeasureSpec);
}
于 2013-10-29T19:32:21.817 回答