1

我是 Android 开发的新手。如果这个问题微不足道,请多多包涵。

我有一个包含按钮的主要活动:

<Button
     android:id="@+id/single_player"
     style="@style/ButtonTheme"
     android:text="Single Player"
     android:visibility="visible"
     android:onClick="OpenGameActivity" />

以及主要活动内的按钮路由到的方法:

public void OpenGameActivity()
{
    Intent intent = new Intent(MainActivity.this, GameActivity.class);
    startActivity(intent);
}

现在,GameActivity.class 是一个用于创建 GLSurfaceView 的活动:

import android.app.Activity;
import android.opengl.GLSurfaceView;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.app.NavUtils;
import android.view.MenuItem;

public class GameActivity extends Activity {
    private GLSurfaceView GridView;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Create a GLSurfaceView instance and set it
        // as the ContentView for this Activity.
        GridView = new GameView(this);
        setContentView(GridView);
    }

GameView 是 GLSurfaceView 的一个简单实现,它创建了 GameRender,一个 GLSurfaceView.Renderer 的简单实现。我根据http://developer.android.com/training/graphics/opengl/environment.html上的指南设置了 Activity、SurfaceView 和 Renderer 渲染器如下所示:

import android.opengl.GLES20;
import android.opengl.GLSurfaceView;
import javax.microedition.khronos.opengles.GL10;

public class GameRender implements GLSurfaceView.Renderer {


    @Override
    public void onDrawFrame(GL10 unused) {
        // Redraw background color
        GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);
    }

    @Override
    public void onSurfaceCreated(GL10 gl10, javax.microedition.khronos.egl.EGLConfig eglConfig) {
        GLES20.glClearColor(0.5f, 0.5f, 0.5f, 1.0f);
    }

    @Override
    public void onSurfaceChanged(GL10 gl10, int width, int height) {
        GLES20.glViewport(0, 0, width, height);
    }
}

问题是,每次我从我的 Android 手机上单击应该启动新活动的按钮时,应用程序都会崩溃。我究竟做错了什么?

我在发布之前进行了研究,因此为了澄清起见,我确实将新活动添加到清单中:

<activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
                android:name=".GameActivity"
                android:parentActivityName=".MainActivity" >
            <meta-data
                    android:name="android.support.PARENT_ACTIVITY"
                    android:value=".MainActivity" />
    </activity>
4

2 回答 2

1

尝试改变

public void OpenGameActivity()

public void OpenGameActivity(View view)

如果您从 XML 中引用一个函数,我认为您需要接受一个 View 参数。

于 2013-06-10T03:19:47.120 回答
0

这里没有对象的实例,像这样更改你的代码

GridView gridview = new GameView(this);
setContentView(gridview );
于 2013-06-10T03:48:15.550 回答