当前位置:   article > 正文

安卓数据存储-SharePreferences

sharepreferences

SharePreferences是使用键值对的方式来存储数据的。当保存一条数据的时候可以通过这个键把相应的值取出来。SharePreferences优点是可以支持多种不同数据类型的存储,如果存储的是整形,那么读取出来的数据也是整形。

SharePreferences具体用法

1)将数据存储到SharePreferences中

想使用SharePreferences来存储数据,首先需要获取到SharePreference对象。安卓主要提供了三种方法:

1、Context类中的getSharedPreferences()方法

此方法接收两个参数,第一个参数用于指定SharePreferences文件名称,如果指定文件不存在就创建一个,SharePreferences文件都是存放在/data/data/<package name>/shared_prefs/目录下的。第二个参数用于指定操作模式,目前自由MODE_PRIVATE这一种模式可以选择,他是默认的操作模式,和直接传入0的效果是相同的,表示只有当前的应用程序才可以对这个SharePreferences文件进行读写。其他方法都已经废弃,就不多说了。

2、Activity类中的getPreferences()方法

这个方法和Context中的getSharePreferences()方法很相似,不过它只接收一个操作模式参数,使用这个方法自动将当前活动类名作为SharePreferences的文件名。

3、preferenceManager类中的getDefaultSharedPreferences()方法

这是一个静态的方法,接受一个Context参数,并且自动使用当前应用程序的包名作为前缀来命名SharePreferences文件。得到了SharePreferences对象之后,就可以开始向SharePreferences文件中存储数据了,主要分为三步实现。

(1)调用SharePreferences对象的edit方法获取一个SharePreferences.Editor对象。

(2)向SharePreferences.Editor对象中添加数据,例如添加一个布尔型数据就使用putBoolean()方法,添加一个字符串这是用putString()方法,以此类推。

(3)调用apply()方法将添加的数据提交,从而完成数据存储的操作。

介绍了三个实现SharePreferences数据存储的方法,现在来实战一下吧。

2)SharePreferencesTest项目

首先新建SharePreferencesTest项目,然后修改activity_main.xml中的代码,如下所示

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:id="@+id/save_data"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Save data" />
</LinearLayout>

这个项目我们仅仅做实现通过按钮实现数据存储到SharedPreferences文件当中。修改MainActivity中的代码

public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button saveData = (Button) findViewById(R.id.save_data);//注册按钮事件
        saveData.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                SharedPreferences.Editor editor = getSharedPreferences("data",MODE_PRIVATE).edit();//指定SharedPreferences的文件名为data并得到了SharedPreferences.Editor对象
                //添加三条不同的数据类型
                editor.putString("name","XIEZHIPENG");
                editor.putInt("age",21);
                editor.putBoolean("married",false);
                //调用apply()进行提交
                editor.apply();
            }
        });
    }
}

现在只是实现了SharedPreferences存储数据,实现的方法很简单!现在我们把SharedPreferences读取数据也做了。

从SharedPreferences读取数据,首先SharedPreferences对象中提供一系列get方法,用于对存储的数据进行读取,每种get方法对应了SharedPreferences.Editor中的一种方法,读取一个字符串就使用getString()方法,整形布尔型类似。这些get方法都接收两个参数 第一个参数是键,传入存储数据时使用的键就可以得到相应的值了;第二个参数就是默认值,表示当传入的键找不到对应的值时会以什么样的默认值进行返回。说了这么多继续做SharedPreferences实现读取数据的功能:

修改activity_main.xml代码,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:id="@+id/save_data"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Save data" />
    <Button
        android:id="@+id/restore_data"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Restore data"/>
    <EditText
        android:id="@+id/edit_Text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="please input data"/>
</LinearLayout>

这里增加了一个读取数据的按钮,通过这个按钮从SharedRreferences文件中读取数据。修改MainActivity中的代码

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button saveData = (Button) findViewById(R.id.save_data);//注册按钮事件
    saveData.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            SharedPreferences.Editor editor = getSharedPreferences("data",MODE_PRIVATE).edit();//指定SharedPreferences的文件名为data并得到了SharedPreferences.Editor对象
            //添加三条不同的数据类型
            editor.putString("name","XIEZHIPENG");
            editor.putInt("age",21);
            editor.putBoolean("married",false);
            //调用apply()进行提交
            editor.apply();
        }
    });
}

从以上代码可以看到,我们获取数据按钮的点击事件中首先通过getSharedPreferences()方法得到了SharedPreferences对象,然后分别调用它的getString()、getInt()、getBoolean()方法,去获取所存储的姓名、年龄和是否已婚,如果没有找到相应的值,就会使用方法中传入的默认值来代替,最后通过EditText控件显示出来。

3)记住密码功能的实现

登录框 login.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="60dp">
    <TextView
        android:layout_width="90dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:textSize="18sp"
        android:text="Account:"/>
    <EditText
        android:id="@+id/account"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="1" />
</LinearLayout>
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="60dp">
        <TextView
            android:layout_width="90dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:textSize="18sp"
            android:text="Password:"/>
        <EditText
            android:id="@+id/password"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_gravity="center_vertical"
            android:inputType="textPassword"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <CheckBox
            android:id="@+id/remember_pass"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Remember password"
            android:textSize="18sp" />
    </LinearLayout>
    <Button
        android:id="@+id/login"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:text="Login" />
</LinearLayout>

LoginActivity类
/*
    模拟简单的登陆功能
 */
public class LoginActivity extends BaseActivity {
    private SharedPreferences pref;
    private SharedPreferences.Editor editor;

    private EditText accountEdit;
    private EditText passwordEdit;
    private Button login;
    private CheckBox rememberPass;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);
        pref = PreferenceManager.getDefaultSharedPreferences(this);//获取到SharedPreference对象
        accountEdit = (EditText) findViewById(R.id.account);
        passwordEdit = (EditText) findViewById(R.id.password);
        rememberPass = (CheckBox) findViewById(R.id.remember_pass);
        login = (Button) findViewById(R.id.login);
        boolean isRemeber = pref.getBoolean("remember_password",false);//调用它的getBoolean()方法获取remember_password,
        if (isRemeber){
            //将账号密码设置到文本框里
            String account = pref.getString("account","");
            String password = pref.getString("password","");
            accountEdit.setText(account);
            passwordEdit.setText(password);
            rememberPass.setChecked(true);
        }
        login.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                String account = accountEdit.getText().toString();
                String password = passwordEdit.getText().toString();
                if (account.equals("admin") && password.equals("123456")){//登录成功之后
                    editor = pref.edit();
                    if (rememberPass.isChecked()){//检查复选框是否被选中
                        editor.putBoolean("remember_password",true);//remember_password键值就改为true
                        editor.putString("account",account);//存储账号密码
                        editor.putString("password",password);
                    }else {
                        editor.clear();
                    }
                    editor.apply();
                    Intent intent = new Intent(LoginActivity.this,MainActivity.class);
                    startActivity(intent);
                    finish();
                }else {
                    Toast.makeText(LoginActivity.this, "密码或者用户名输入错误!", Toast.LENGTH_SHORT).show();
                }
            }
        });
    }                        
}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/人工智能逻辑思维/article/detail/60773
推荐阅读
相关标签
  

闽ICP备14008679号