- 1、本文档共25页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第6章 Android数据存储 本章内容 Android的SharedPreferences Android的文件读写 Android的SQLite数据库 本章目标 了解Android数据存储方式 掌握SharedPreferences的使用 掌握文件读写的使用 掌握SQLite数据库的使用 1. Android数据存储 Android为应用软件提供了一种向其他应用软件开放私有数据的标准方式。 Android数据存储描述了应用软件存储和获取数据、向其他应用软件开放数据、从其他应用软件请求数据并将其开放的方式 1. Android数据存储 Android数据存储分为以下4种方式: 1. SharedPreferences存储 2. 文件(Files)存储 3. 数据库(SQLite Databases)存储 4. 网络存储 2. SharedPreferences数据储存 SharedPreferences是Android提供的一种用于存储部分简单配置信息(如默认的欢迎语、登录用户名和密码等)的机制,以键值对方式存储,便于读取和存入。 2. SharedPreferences数据储存 ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=/apk/res/android android:orientation=vertical android:layout_width=fill_parent” android:layout_height=wrap_content LinearLayout xmlns:android=/apk/res/android android:orientation=horizontal android:layout_width=fill_parent” android:layout_height=fill_parent android:layout_marginLeft=20dp” android:layout_marginRight=20dp TextView android:layout_width=wrap_content android:text=用户名称:” android:textSize=20dp android:layout_height=wrap_content / EditText android:id=@+id/userName android:layout_width=fill_parent” android:layout_height=wrap_content / /LinearLayout LinearLayout xmlns:android=/apk/res/android android:orientation=horizontal android:layout_width=fill_parent” android:layout_height=fill_parent android:layout_marginLeft=20dp” android:layout_marginRight=20dp TextView android:layout_width=wrap_content android:layout_height=wrap_content android:text=密 码:” android:textSize=20dp / EditText android:id=@+id/password android:password=true” android:layout_width=fill_parent” android:layout_height=wrap_content / /LinearLayout LinearLayout android:orientation=horizontal” android:layout_width=fill_parent android:layout_height=fill_parent android:layout_marginTop=10dp Button android:id=@+id/btnSave” android:layout_width=wrap_content android:layout_height=wrap_content android:text=登录 / /LinearLayout /LinearLayout 使用SharedPreferences存储登录的用户名和密
您可能关注的文档
- 第5章压力管路的水力计算重点.ppt
- 语言表达---图文转换·表文剖析.ppt
- 设备操作安全剖析.ppt
- 语言学纲要剖析.pptx
- 语言学类别和流派剖析.doc
- 语言的魅力教学设计剖析.doc
- 语言学流派剖析.pptx
- 第4章【信道】--4.4~4.5重点.ppt
- 李阳疯狂英语脱口而出全集重点.docx
- 柴油机试验站与辅助楼施工进度计划易主危楼重点.pptx
- [中央]2023年中国电子学会招聘应届生笔试历年参考题库附带答案详解.docx
- [吉安]2023年江西吉安市青原区总工会招聘协理员笔试历年参考题库附带答案详解.docx
- [中央]中华预防医学会科普信息部工作人员招聘笔试历年参考题库附带答案详解.docx
- [保定]河北保定市第二医院招聘工作人员49人笔试历年参考题库附带答案详解.docx
- [南通]江苏南通市崇川区人民法院招聘专职人民调解员10人笔试历年参考题库附带答案详解.docx
- [厦门]2023年福建厦门市机关事务管理局非在编工作人员招聘笔试历年参考题库附带答案详解.docx
- [三明]2023年福建三明市尤溪县招聘小学幼儿园新任教师79人笔试历年参考题库附带答案详解.docx
- [哈尔滨]2023年黑龙江哈尔滨市木兰县调配事业单位工作人员笔试历年参考题库附带答案详解.docx
- [上海]2023年上海市气象局所属事业单位招聘笔试历年参考题库附带答案详解.docx
- [台州]2023年浙江台州椒江区招聘中小学教师40人笔试历年参考题库附带答案详解.docx
文档评论(0)