`
canofy
  • 浏览: 831158 次
  • 性别: Icon_minigender_1
  • 来自: 北京、四川
社区版块
存档分类
最新评论

文本中的值的保存与恢复

阅读更多

这是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;
}

分享到:
评论

相关推荐

    VB自动保存窗体控件值到一个INI文件中.

    4. **保存控件值**:将每个控件的值与相应的键一起写入INI文件的相应节中。例如,可以有一个`FormSettings`节,其中包含所有窗体控件的设置。 5. **加载控件值**:在程序启动时,我们需要读取INI文件并将这些值恢复...

    mfc中读取编辑框数据并保存

    ### MFC中读取编辑框数据并保存至TXT文档 #### 概述 在MFC(Microsoft Foundation Classes)开发环境中,经常会遇到需要读取用户输入的数据,并将其保存到文件中的需求。本文将详细介绍如何在MFC中实现从编辑框(即`...

    LabVIEW前面板参数保存.rar

    LabVIEW(Laboratory ...总之,“LabVIEW前面板参数保存”是一个涵盖前面板控件值的保存和恢复、项目可重复性、团队协作和代码复用等多个方面的主题。理解和掌握这些技巧,可以显著提高LabVIEW项目的效率和质量。

    opencv 将图像保存为文本文件

    在OpenCV中,我们可以用二维数组来表示这些像素值,这个数组可以很容易地转换为文本格式并保存到文件中。 要将图像保存为文本文件,我们需要完成以下步骤: 1. **读取图像**:使用`cv2.imread()`函数读取图像文件...

    易语言程序自身保存数据

    这些数据通常需要在程序启动时读取并在关闭时保存,以便下次启动时能够恢复到用户设定的状态。 2. 自身保存数据的方法 易语言提供了多种方法来实现程序自身保存数据。常见的方法有以下几种: - 文件操作:利用...

    VB listview的使用与数据的保存

    在VB(Visual Basic)编程中,ListView控件是一种常见的用户界面元素,用于展示列表或表格形式的数据。...在实际开发中,根据项目需求选择合适的数据保存策略,如文件存储或数据库存储,以确保数据的安全性和可恢复性。

    易语言批量保存组件状态

    易语言,作为一款中国本土的编程语言,为开发者提供了丰富的组件库,并且支持对这些组件状态的保存与加载,以便在程序运行过程中或者下次启动时能够恢复用户的自定义设置。本文将详细探讨“易语言批量保存组件状态”...

    如何在edit保存修改的值

    LiveData可以用来实时观察EditText的变化,并在需要时将值保存或恢复。 总之,保存EditText的修改值涉及数据存储的选择和适当的保存与恢复机制。选择哪种方法取决于你的具体需求,如数据量、复杂性以及是否需要在多...

    串口屏LUA教程-背光亮度保存V1.0.pdf

    文章的核心内容是利用LUA语言在串口屏设备上实现背光亮度值的保存与恢复。在实际操作过程中,开发者需要仔细阅读文档中涉及的API接口函数的使用说明,结合LUA的文件IO操作,编写出能够响应用户操作并实现所需功能的...

    易语言自定义数据类型变量保存

    通过学习和理解这些源码,你可以掌握如何在易语言中有效地保存和恢复自定义数据类型变量,这对于开发任何需要持久化数据的易语言程序都是必不可少的技能。同时,这也为你提供了实践易语言序列化和反序列化的实例,有...

    MFC 保存DC的方法

    在Microsoft Foundation Classes (MFC)库中,Device Context (DC)是Windows图形设备接口(GDI)中的一个重要概念,它代表了系统与图形设备(如屏幕、打印机等)交互的上下文。DC包含了设备的状态信息,如颜色设置、...

    易语言超级列表框表项的保存与读取

    "易语言超级列表框表项的保存与读取"这个主题聚焦于如何在易语言中处理超级列表框(Super List Box)控件的数据持久化。超级列表框是一种能够显示多列数据的控件,常用于展示复杂或大量的信息,例如数据库查询结果。...

    TwinCAT 2.0 使用说明(数据保存)

    PLC需要保存的数据主要分为以下几类:配方、数据记录、报警记录、记数器值、位置值等。这些数据对于生产线的正常运行至关重要。在PLC中,数据保存方式的多样性和灵活性是其一大特点。TwinCAT 2.0为用户提供了多种...

    cisco IOS恢复文档

    【cisco IOS恢复文档】 Cisco IOS(Internetwork Operating System)是Cisco公司开发的网络操作系统,用于管理和控制Cisco网络设备,如路由器和交换机。本文档主要涵盖了密码恢复和IOS恢复的相关知识。 一、路由器...

    空气探测器CCS811的baseline文档

    空气探测器CCS811的baseline文档是关于CCS811应用firmware中的baseline“保存和恢复”功能的实现说明。该功能可以使传感器尽快地指示ambient条件下的空气质量,不管ambient条件如何。 1. 基线保存和恢复功能 基线...

    Oracle数据库备份与恢复总结

    ### Oracle数据库备份与恢复知识点总结 #### 一、EXP/IMP (导出与导入) **1.1 基本命令** - **EXP**: 用于从数据库导出数据。 - `exp username/password [参数]` - **IMP**: 用于向数据库导入数据。 - `imp ...

    JavaScript html js页面刷新之后下拉菜单选中值不变,在按钮提交后保存下拉列表中值不变

    描述中的“在按钮提交后保存下拉列表中值不变”意味着在用户交互(如点击按钮)后,应该触发保存和恢复选择的操作。可以监听按钮的`click`事件,执行保存操作,并在页面加载时进行恢复。 标签“源码”和“工具”...

    Labview按行读取带有数字和文字的txt文件,并保存在Excel中

    对于带有数字和文字的混合数据,可以使用字符串操作函数(如“字符串到数值”和“分割字符串”)来分离并处理不同类型的值。 3. **处理数字和文字**: - 数字和文字在LabVIEW中是分开处理的。对于数字,可以使用...

    利用文本文件保存和初始化控件默认值.rar

    3. **设置控件属性**:将从文件中读取的属性值应用到控件上,使控件恢复到之前保存的状态。 4. **处理列表控件**:对于列表框,根据保存的索引重新选择相应的项,或者如果保存了所有项内容,则重新填充列表框。 5. *...

    第-章数据库恢复技术优秀文档.ppt

    检查点恢复技术是一种恢复技术,将数据库的状态保存到一个检查点中,以便在故障时快速恢复数据库。检查点恢复技术可以分为以下几种: * 硬故障:硬故障是指外存故障,即将日志记录中的“更新后的值”写入数据库。 *...

Global site tag (gtag.js) - Google Analytics