文本中的值的保存与恢复

这是android提供的ApiDemo里面的关于保存文本中值的例子

PersistentState 持久化状态?

在onPause时应用了SharedPreferences.Editor来保存值
在onResume时应用了SharedPreferences对象来恢复值

和onSaveInstanceState()方法不太一样



package com.example.android.apis.app;

// Need the following import to get access to the app resources, since this
// class is in a sub-package.

import com.example.android.apis.R;

import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.widget.EditText;
import android.widget.TextView;

/**
* Simple example of using persistent preferences to retain a screen's state.
* <p>This can be used as an alternative to the normal
* <code>onSaveInstanceState()</code> mechanism, if you
* wish the state to persist even after an activity is finished.</p>
*
* <p>Note that using this approach requires more care, since you are sharing
* the persistent state potentially across multiple instances of the activity.
* In particular, if you allow a new instance of the activity to be launched
* directly on top of the existing instance, the state can get out of sync
* because the new instance is resumed before the old one is paused.</p>
*
* <p>For any persistent state that is not simplistic, a content
* provider is often a better choice.</p>
*
* <p>In this example we are currently saving and restoring the state of the
* top text editor, but not of the bottom text editor. You can see the difference
* by editing the two text fields, then going back from the activity and
* starting it again.</p>

*/
public class PersistentState extends Activity
{
/**
* Initialization of the Activity after it is first created. Here we use
* {@link android.app.Activity#setContentView setContentView()} to set up
* the Activity's content, and retrieve the EditText widget whose state we
* will persistent.
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
// Be sure to call the super class.
super.onCreate(savedInstanceState);

// See assets/res/any/layout/save_restore_state.xml for this
// view layout definition, which is being set here as
// the content of our screen.
setContentView(R.layout.save_restore_state);

// Set message to be appropriate for this screen.
((TextView)findViewById(R.id.msg)).setText(R.string.persistent_msg);

// Retrieve the EditText widget whose state we will save.
mSaved = (EditText)findViewById(R.id.saved);
}

/**
* Upon being resumed we can retrieve the current state. This allows us
* to update the state if it was changed at any time while paused.
*/
@Override
protected void onResume() {
super.onResume();

SharedPreferences prefs = getPreferences(0);
String restoredText = prefs.getString("text", null);
if (restoredText != null) {
mSaved.setText(restoredText, TextView.BufferType.EDITABLE);

int selectionStart = prefs.getInt("selection-start", -1);
int selectionEnd = prefs.getInt("selection-end", -1);
if (selectionStart != -1 && selectionEnd != -1) {
mSaved.setSelection(selectionStart, selectionEnd);
}
}
}

/**
* Any time we are paused we need to save away the current state, so it
* will be restored correctly when we are resumed.
*/
@Override
protected void onPause() {
super.onPause();

SharedPreferences.Editor editor = getPreferences(0).edit();
editor.putString("text", mSaved.getText().toString());
editor.putInt("selection-start", mSaved.getSelectionStart());
editor.putInt("selection-end", mSaved.getSelectionEnd());
editor.commit();
}

private EditText mSaved;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值