Android:如何在屏幕更改时保持我的意图

时间:2014-02-25 11:54:23

标签: android android-intent android-orientation

在我的主要活动中,我打开一个带有文本框的意图来编辑数据,但是在屏幕旋转时,打开的意图关闭,只留下启动活动。我应该如何处理它,以便我的次要意图不会在屏幕旋转时关闭。

1 个答案:

答案 0 :(得分:1)

android:configChanges="orientation|keyboardHidden|screenSize"档案

中的活动声明中添加AndroidManifest.xml

或处理

中的数据
 @Override
    protected void onSaveInstanceState(Bundle outState) {
        // store the data in bundle
        super.onSaveInstanceState(outState);
    }

并恢复

中的数据
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
    // restore the data from bundle and settext to edittext
    super.onRestoreInstanceState(savedInstanceState);
}