游戏没有正常退出

时间:2012-03-29 11:27:54

标签: java android android-lifecycle

我有一个应用程序,到目前为止包含两个活动:

  • 主菜单活动。

  • 游戏活动

主菜单活动包含一个按钮,该按钮使用以下代码启动游戏活动:

public void onClick(View clickedButton)
    {
        switch(clickedButton.getId())
        {
        case R.id.buttonPlay:
            Intent i = new Intent("apple.banana.BouncingBallActivity");
            startActivity(i);
            break;
    }

当用户完成游戏活动时,他按下后退按钮。这首先调用onPause()方法,暂停游戏的动画线程。然后它调用onStop(),它完全调用活动上的finish()。用户返回主菜单活动。代码概述如下:

public class BouncingBallActivity extends Activity{


    private BouncingBallView bouncingBallView;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        bouncingBallView = new BouncingBallView(this);
        bouncingBallView.resume();
        setContentView(bouncingBallView);
    }

    @Override
    protected void onPause()
    {
        super.onPause();
        bouncingBallView.pause();
    }

    @Override
    protected void onResume()
    {
        super.onResume();
        bouncingBallView.resume();
    }

    @Override
    protected void onStop()
    {
        super.onStop();
        this.finish();
    }
}

问题是这只有在我从Eclipse启动应用程序时才有效。 当我点击应用程序图标时,游戏将从游戏活动开始。主菜单活动不会出现。

我不清楚为什么会这样。它可能与清单有关。我已粘贴以下相关部分:

<application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".BouncingBallActivity"
            android:label="@string/app_name"
            android:screenOrientation="landscape" >
            <intent-filter>
                <action android:name="apple.banana.BouncingBallActivity" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".MainMenu"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

我真的很感激任何帮助。感谢。

2 个答案:

答案 0 :(得分:1)

finish()的来电不属于您的onStop()方法。如果您想在用户按下时结束游戏,请将其放在onPause()中。应用程序在后续发布时(通过Android启动器界面)从游戏活动中获取的原因是它永远不会离开那里。

如果您只想在用户按下Back键而不是其他暂停时结束游戏,那么您需要捕获传入的密钥,如果密钥是Back,则需要finish()

答案 1 :(得分:0)

按下后退按钮时可以执行此操作。

@Override
    public boolean onKeyDown(int keyCode, KeyEvent event)
    {
        if ((keyCode == KeyEvent.KEYCODE_BACK))
        {       
            this.finish();
        }
        return super.onKeyDown(keyCode, event);
    }

@Override
public void onBackPressed() {
    this.finish();
}