Android数据存储
时间:2014-07-24 22:01:22
收藏:0
阅读:384
SharedPreferences----------->for primitive data
Internal Storage-------------->for private data
External Storage------------->for large data sets that are not private
SQLite Databases------------>for structured storage
---------------------------------------------------------------------------------------------------
Content Provider--------------->expose your private data to other applications.
-------------------------------->exposes read/write access to you application data,subject to whatever restrictions you want to impose.
XML文件
原文:http://www.cnblogs.com/daishuguang/p/3866169.html
评论(0)