安卓开发之使用SharedPreferences保存键值对数据

举报
南蓬幽 发表于 2022/08/29 11:43:08 2022/08/29
【摘要】 使用SharedPreferences保存键值对数据 AndroidManifest.xml savedata.xml savedata 实验结果 使用SharedPreferences保存键值对数据如果您有想要保存的相对较小键值对集合,则应使用 SharedPreferences API。SharedPreferences 对象指向包含键值对的文件,并提供读写这些键值对的简单方法。每个 ...

使用SharedPreferences保存键值对数据

如果您有想要保存的相对较小键值对集合,则应使用 SharedPreferences API。SharedPreferences 对象指向包含键值对的文件,并提供读写这些键值对的简单方法。每个 SharedPreferences 文件均由框架进行管理,可以是私有文件,也可以是共享文件。

AndroidManifest.xml

 <activity android:name=".SaveData">
        <intent-filter>
            <action android:name="sp" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

savedata.xml

在这里插入图片描述

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="30dp"
            android:orientation="horizontal">

            <EditText
                android:id="@+id/et_input"
                android:layout_width="287dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:layout_marginTop="30dp"
                android:layout_weight="1"
                android:textSize="20dp"></EditText>

            <Button
                android:id="@+id/btn_saveContent"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:layout_marginRight="20dp"
                android:layout_weight="1"
                android:onClick="save"
                android:text="存入SHAREDPREFENCE"
                android:textColor="#090909"
                android:textSize="20dp"
                app:backgroundTint="#E3E2E2"></Button>


        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:layout_marginTop="30dp">

            <TextView
                android:id="@+id/tv_result"
                android:layout_width="332dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:layout_weight="1"
                android:textSize="20dp"></TextView>

            <Button
                android:id="@+id/btn_showContent"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:layout_marginLeft="20dp"
                android:layout_marginRight="20dp"
                android:textColor="#090909"
                android:text="从SHAREDPREFERENCE取出"
                app:backgroundTint="#E3E2E2"
                android:textSize="20dp"></Button>
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

savedata

  1. 获取共享偏好设置(Shared Preferences)的句柄(handle) 写入
  2. Shared Preferences
  3. 从共享Preference文件中读取数据
package com.example.myapplication4;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;


import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;

public class SaveData extends AppCompatActivity implements View.OnClickListener {
    private EditText et_content;
    private TextView tv_content;

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_savedata);
        findViewById(R.id.btn_saveContent).setOnClickListener(this);
        findViewById(R.id.btn_showContent).setOnClickListener(this);
        tv_content = (TextView) findViewById(R.id.tv_result);
        et_content = (EditText) findViewById(R.id.et_input);
        if(tv_content.getText().toString().trim().equals("")){
            SharedPreferences sp = this.getSharedPreferences("data", MODE_PRIVATE);
            tv_content.setText(sp.getString("content", ""));
            et_content.setText(sp.getString("content", ""));
        }
    }


    @Override
    public void onClick(View v) {
        switch (v.getId()) {

            case R.id.btn_saveContent:
                SharedPreferences sp = this.getSharedPreferences("data", MODE_PRIVATE);
                SharedPreferences.Editor editor = sp.edit();
                editor.putString("content", et_content.getText().toString().trim());
                editor.commit();
                Toast.makeText(this, "存入成功", Toast.LENGTH_SHORT).show();
                break;

            case R.id.btn_showContent:
                sp = this.getSharedPreferences("data", MODE_PRIVATE);
                tv_content.setText(sp.getString("content", ""));
                Toast.makeText(this, "取出成功", Toast.LENGTH_SHORT).show();
                break;
        }
    }




}

实验结果

在这里插入图片描述

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。