Android类库介绍.pdf`Actirity
starts
oncreate(
User navigate
back to the
actvty
nsta
arto
onStar:o
Process is
killed
reSume
Activ ty Is
runin
The act/w’y
ng
comes to the
「 Anothe actvity comes
I in front of the activiry
her applications
cornes fa ihe
rHee
数据存储与访问 很多时候我们的软件需要对处理后的数据进行存储或再次访问。Android为数据存储提供了多种方式,分别有如下几种: 文件 SharedPreferences SQLite数据库 内容提供者(Content provider) 网络 使用文件进行数据存储 首先给大家介绍使用文件如何对数据进行存储,Activity提供了openFileOutput()方法可以用于把数据输出到文件中,具体的实现过程与在J2SE环境中保存数据到文件中是一样的。 代码如下: public class Fi