作者:百变靓丽 | 来源:互联网 | 2024-11-12 14:21
实验九:使用SharedPreferences存储简单数据
一、实验要求和目的
- 理解SharedPreferences的基本概念及其在Android开发中的应用。
- 掌握使用SharedPreferences保存和读取程序参数、选项等简单数据的方法。
二、实验环境
- 安装有Android Studio和Android SDK的计算机。
- 建议在机房的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"
/>
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"
/>
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();
}
});
}
}