API文档里面介绍,android的存储方式有五种,选择哪种存储方式要根据具体的需求来选择;比如是否允许其他的应用访问你存储的数据,存储数据的大小等。
接下来先说说都有哪几种存储方式,然后在一一介绍。
一、Shared Preferences
以键值对的方式存储数据。以该种方式存储的数据,当应用退出数据不消失。
1、获取SharedPreferences对象的方法
1)getSharedPreferences()方式获取
A.该方法有两个参数,第一个为文件名称,第二个参数为文件的模式
B.通过该方法存储的数据可在多个Activity中使用
C.该方法是属于Context的
2)getPreferences()方式获取
A.该方法只有一个参数,文件的模式,生成的文件名为该Activity名
B.通过该方法存储的数据只能在该Activity中使用
C.该方法是属于Activity
2、使用步骤
1)调用edit() 方法得到SharedPreferences.Editor
2)存储值使用putXxx()方法
3)调用commit()方法提交
3、最常见的例子——记住密码
public class ShardPreferencesActivity extends AppCompatActivity {
private EditText mUsernameView;
private EditText mPasswordView;
private CheckBox mRememberView;
private SharedPreferences sharedPreferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_shard_preferences);
initViews();
sharedPreferences = getSharedPreferences("user",0);
}
@Override
protected void onStart() {
super.onStart();
checkUserInfo();
}
private void checkUserInfo() {
boolean isRemember = sharedPreferences.getBoolean("isRemember",false);
if(isRemember){
mUsernameView.setText(sharedPreferences.getString("username",null));
mPasswordView.setText(sharedPreferences.getString("password",null));
mRememberView.setChecked(true);
}else {
mUsernameView.setText(sharedPreferences.getString("",null));
mPasswordView.setText(sharedPreferences.getString("",null));
mRememberView.setChecked(false);
}
}
private void initViews() {
mUsernameView = (EditText) findViewById(R.id.edit_username);
mPasswordView = (EditText) findViewById(R.id.edit_password);
mRememberView = (CheckBox) findViewById(R.id.check_remember);
}
public void login(View view){
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("username",mUsernameView.getText().toString());
editor.putString("password",mPasswordView.getText().toString());
editor.putBoolean("isRemember", mRememberView.isChecked());
editor.commit();
Toast.makeText(ShardPreferencesActivity.this,"登录成功",Toast.LENGTH_LONG).show();
}
}
布局很简单的就是简单的登录界面
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.ws.savedemo.activity.ShardPreferencesActivity">
<TextView
android:id="@+id/text_username"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="用户名:"
android:textSize="18sp"
android:layout_marginTop="6dp"/>
<EditText
android:id="@+id/edit_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/text_username"/>
<TextView
android:id="@+id/text_password"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_below="@id/edit_username"
android:text="密 码:"
android:textSize="18sp"
android:layout_marginTop="6dp"/>
<EditText
android:id="@+id/edit_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/edit_username"
android:layout_toRightOf="@id/text_password"/>
<CheckBox
android:id="@+id/check_remember"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="记住密码"
android:layout_below="@id/edit_password"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/check_remember"
android:onClick="login"
android:text="登录"/>
</RelativeLayout>
4、存储位置
实际上,SharedPreferences 将数据文件写在了手机内存私有的目录中该app的文件夹下。
可以通过DDMS的【File Explorer】找到data\data\程序包名\shared_prefs目录(如果使用真机测试,必须保存已root,否则因为权限问题无法进入data目录)