热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

实验九:使用SharedPreferences存储简单数据

本实验旨在帮助学生理解和掌握使用SharedPreferences存储和读取简单数据的方法,包括程序参数和用户选项。

实验九:使用SharedPreferences存储简单数据

一、实验要求和目的

  1. 理解SharedPreferences的基本概念及其在Android开发中的应用。
  2. 掌握使用SharedPreferences保存和读取程序参数、选项等简单数据的方法。

二、实验环境

  1. 安装有Android Studio和Android SDK的计算机。
  2. 建议在机房的HelloWorld示例基础上进行实验。

三、实验步骤

1. 创建主活动(MainActivity)布局文件(activity_main.xml):


xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:cOntext=".MainActivity">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tv"
android:text="欢迎来到我的家园"
android:textSize="18sp"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bt"
android:textSize="18sp"
android:layout_below="@+id/tv"
android:text="参数设置"
android:layout_marginTop="15dp"
android:layout_marginLeft="100dp"
/>

2. 创建设置活动(SetActivity)布局文件(activity_set.xml):


xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:cOntext=".SetActivity">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="25sp"
android:text="请输入用户名:"
android:id="@+id/tv2"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/et"
android:layout_below="@+id/tv2"
android:layout_marginLeft="100dp"
android:layout_marginTop="35dp"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/et"
android:layout_marginLeft="100dp"
android:layout_marginTop="15dp"
android:text="确定"
android:textSize="20sp"
android:id="@+id/bt1"
/>

3. 编写主活动(MainActivity)代码:

package com.example.shiyan9;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
private SharedPreferences preferences = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 为“参数设置”按钮绑定监听器
Button btn_set = findViewById(R.id.bt);
btn_set.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent it = new Intent(MainActivity.this, SetActivity.class);
startActivity(it);
}
});
}
@Override
protected void onStart() {
super.onStart();
preferences = getSharedPreferences("set", Context.MODE_PRIVATE);
String user = preferences.getString("user", "");
TextView tv_welcome = findViewById(R.id.tv);
tv_welcome.setText("欢迎 " + user + " 来到我的家园");
}
}

4. 编写设置活动(SetActivity)代码:

package com.example.shiyan9;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class SetActivity extends AppCompatActivity {
private SharedPreferences preferences = null;
private SharedPreferences.Editor editor = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_set);
// 利用SharedPreferences读取数据并显示
preferences = getSharedPreferences("set", Context.MODE_PRIVATE);
// 获取SharedPreferences.Editor对象,尝试写数据
editor = preferences.edit();
// 为“确定”按钮绑定监听器
Button btn_ok = findViewById(R.id.bt1);
final EditText et_user = findViewById(R.id.et);
btn_ok.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String user = et_user.getText().toString();
editor.putString("user", user);
editor.apply();
finish();
}
});
}
}

推荐阅读
author-avatar
百变靓丽
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有