当我最小化时,重置对象的分数和位置等数据。当我锁定屏幕时,应用程序重新启动。有没有办法保存所有对象数据,使他们的位置和得分恢复后相同?我如何制作blockcreen按钮(与等待锁屏相同)不会让应用程序重启。是否可以通过应用程序禁用自动锁屏?
对不起,如果要求太多,我是新来的,我在其他问题上找不到我想要的东西。
这是我的Activity类:
`public class Home extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(new GamePanel(this));//GamePanel is the SurfaceView
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_home, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}`
答案 0 :(得分:1)
我认为你应该使用saveInstanceState和restoreInstanceState。
在http://developer.android.com/training/basics/activity-lifecycle/recreating.html#SaveState
结帐“保存您的活动状态”