文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android 使用 SharedPreferences 保存少量数据的实现代码

2024-04-02 19:55

关注

1 SharedPreferences 介绍

SharedPreferences是使用键值对的方式来存储数据的


SharedPreferences share = getSharedPreferences("my_file", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = share.edit();
// 4 保存数据到文件
editor.putString("account", input_account.getText().toString());
editor.putString("password", input_password.getText().toString());
editor.putBoolean("pass_remem", pass_remem.isChecked());   // 单选框 选中时返回为 true

当保存一条数据的时候,需要给这条数据提供一个对应的键,可以通过这个把相应的值取出来


SharedPreferences sharedPreferences = getSharedPreferences("my_file", Context.MODE_PRIVATE);
Boolean pass_remem_ = sharedPreferences.getBoolean("pass_remem", false);

它是一个轻量级的存储类,特别适合用于保存软件配置参数。使用SharedPreferences保存数据,文件存放在/data/data/<package name>/shared_prefs目录下

1.1 SharedPreferences 四种操作模式

1.3 使用方法

由于SharedPreferences是一个接口,而且在这个接口里没有提供写入数据和读取数据的能力。但其内部有一个Editor内部接口,Editor接口有一系列方法来操作SharedPreference

1.edit( ) 获得SharedPreferences.Edit对象 getSharedPreferences("myfile",0).edit( )

2.向对象中添加数据


editor.putString(“name”, “张三");
editor.putInt(“age”, 21);
editor.putBoolean("married",true)

3.commit( ) 提交数据,完成数据存储操作 editor.commit( );

4.从文件中读取数据 第一个参数为KEY 第二个参数为访问失败时的默认值


getString ("name", "");
getInt (“age", 0);
getBoolean (“married", false);

2 使用 SharedPreferences 进行登录

2.1 前端设计

在这里插入图片描述


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    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"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/app_name"
        android:textSize="36sp"
        android:gravity="center"
        android:layout_marginTop="100dp"
        android:layout_marginBottom="10dp"
         />

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

        <TextView
            android:id="@+id/account"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/S_account"
            android:gravity="center"
            android:textSize="16sp"
            />

        <EditText
            android:id="@+id/input_account"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:ems="10"
            android:textSize="16sp"
            android:paddingLeft="10dp"
            android:inputType="textPersonName"
            android:hint="@string/S_input_account"/>
    </LinearLayout>

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


        <TextView
            android:id="@+id/password"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/S_password"
            android:gravity="center"
            android:textSize="16sp"
            />

        <EditText
            android:id="@+id/input_password"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:ems="10"
            android:textSize="16sp"
            android:paddingLeft="10dp"
            android:inputType="numberPassword"
            android:hint="@string/S_input_password"/>
    </LinearLayout>

    <CheckBox
        android:id="@+id/password_remember"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:layout_gravity="right"
        android:layout_marginRight="30dp"
        android:layout_marginBottom="33dp"
        android:text="@string/S_pass_remem"
        android:checked="false"
        />
    <Button
        android:id="@+id/submit"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="5dp"
        android:layout_margin="20dp"
        android:text="@string/S_button_submit"
        android:textSize="24sp"

        />
</LinearLayout>

2.1 Control层


public class MainActivity extends AppCompatActivity {

    private EditText input_account, input_password;
    private CheckBox pass_remem;
    private Button submit_button;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // 1 获取各个组件的信息, 并存储到数据层
        input_account = this.findViewById(R.id.input_account);
        input_password = this.findViewById(R.id.input_password);
        pass_remem = this.findViewById(R.id.password_remember);
        submit_button = this.findViewById(R.id.submit);

        // 2 设置按钮的点击事件
        submit_button.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // 3 获取SharedPreferences
                SharedPreferences share = getSharedPreferences("my_file", Context.MODE_PRIVATE);
                SharedPreferences.Editor editor = share.edit();
                // 4 保存数据到文件
                editor.putString("account", input_account.getText().toString());
                editor.putString("password", input_password.getText().toString());
                editor.putBoolean("pass_remem", pass_remem.isChecked());   // 单选框 选中时返回为 true

                // 5 提交数据, 并进行提示
                editor.commit();
                Toast.makeText(MainActivity.this, "数据写入成功", Toast.LENGTH_SHORT).show();

                // App条状
                Intent intent = new Intent(MainActivity.this, SecondActivity.class);
                startActivity(intent);

            }
        });

        // 6 如果选中,下一次加载数据
        SharedPreferences sharedPreferences = getSharedPreferences("my_file", Context.MODE_PRIVATE);
        Boolean pass_remem_ = sharedPreferences.getBoolean("pass_remem", false);

        if (pass_remem_) {

            String account = sharedPreferences.getString("account", "");
            String password = sharedPreferences.getString("password", "");


            input_account.setText(account);
            input_password.setText(password);
            pass_remem.setChecked(pass_remem_);  // 恢复到原来的状态

        }

    }
}

到此这篇关于Android 使用 SharedPreferences 保存少量数据的文章就介绍到这了,更多相关Android 保存数据内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯