Android Studio SharedPreferences的使用

存储位置

SharedPreferences以键值对的形式,存放在设备/data/data/<package name>/shared_prefs/data.xml中,保存的数据会随着应用的卸载而被删除

存储数据

java 复制代码
// 导入
import android.content.SharedPreferences;

// 获取SharedPreferences对象
SharedPreferences sp = (SharedPreferences) getSharedPreferences("data",MODE_PRIVATE);
// 获取Editor对象
SharedPreferences.Editor editor = sp.edit();
// 将值以字符串形式存入
editor.putString("userName", user_name.getText().toString());
editor.putString("password", password.getText().toString());
// 提交数据
editor.commit();
Toast.makeText(MainActivity.this,"注册成功",Toast.LENGTH_SHORT).show();

提取数据

相关推荐
牛哇网络工作室3 小时前
UnityHDRP写实数字人全流程基础5—语音输入和语音识别
android·unity·c#·游戏引擎·aigc·语音识别·xcode
一笑的小酒馆4 小时前
Androidiot蓝牙配网简单封装
android
愚公搬代码7 小时前
【愚公系列】《Android应用案例开发大全》016-LBS类应用掌上杭州(辅助工具类的开发)
android·前端
g10565591398 小时前
LAMP博客平台Wordpress实战
android·mysql·nginx·php
hunterandroid9 小时前
[Android 从零到一] Compose LazyColumn 性能优化:key、稳定性与重组治理
android·前端
pengyu9 小时前
【Kotlin 协程修仙录 · 元婴境 · 中阶】 | 操作符真解:Flow 中间操作符与数据流变幻术
android·kotlin
pengyu10 小时前
【Kotlin 协程修仙录 · 元婴境 · 初阶】 | 冷流初啼:Flow 的基础与响应式编程的入门
android·kotlin
wawo0010 小时前
Kuikly实践-从Android compose迁移到kuikly compose
android
Carson带你学Android12 小时前
Android 版 MCP 正式登场:AppFunctions
android·ai编程·jetbrains
古法安卓15 小时前
Android-Direct Boot 阶段与 getFilesDir() 路径变更问题深度分析
android·java·android studio