Android 简明教程
Android - Shared Preferences
Android 提供了多种存储应用程序数据的途径。其中一种途径称为共享首选项。共享首选项允许您以键值对的形式保存和检索数据。
为了使用共享首选项,您必须调用一个名为 getSharedPreferences() 的方法,该方法返回一个 SharedPreference 实例,指向包含首选项值的文件。
SharedPreferences sharedpreferences = getSharedPreferences(MyPREFERENCES, Context.MODE_PRIVATE);
第一个参数是键,第二个参数是 MODE。除了 private 以外,还有其他可用的模式,如下所列 −
Sr.No |
Mode & description |
1 |
MODE_APPEND 这将把新的首选项追加到已有的首选项 |
2 |
MODE_ENABLE_WRITE_AHEAD_LOGGING 数据库打开标志。当它被设置时,它将默认启用预写日志记录 |
3 |
MODE_MULTI_PROCESS 即使已加载共享首选项实例,此方法也会检查首选项的修改情况 |
4 |
MODE_PRIVATE 设置此模式后,只能使用调用应用程序访问文件 |
5 |
MODE_WORLD_READABLE 此模式允许其他应用程序读取首选项 |
6 |
MODE_WORLD_WRITEABLE 此模式允许其他应用程序写入首选项 |
您可以使用 SharedPreferences.Editor 类在 sharedpreferences 中保存一些东西。您将调用 SharedPreference 实例的 edit 方法,并在 editor 对象中接收它。它的语法是 −
Editor editor = sharedpreferences.edit();
editor.putString("key", "value");
editor.commit();
除了 putString 方法之外,编辑器类中还提供了一些方法,允许操作共享首选项中的数据。它们列示如下 −
Sr. NO |
Mode & description |
1 |
apply() 它是一个抽象方法。它将您的更改从编辑器提交回您正在调用的 sharedPreference 对象。 |
2 |
clear() 它将清除编辑器中的所有值 |
3 |
remove(String key) 它将清除已作为参数传递其密钥的值 |
4 |
putLong(String key, long value) 它将保存一个长值在首选项编辑器中 |
5 |
putInt(String key, int value) 它将保存一个整数值在首选项编辑器中 |
6 |
putFloat(String key, float value) 它将保存一个浮点值在首选项编辑器中 |
Example
此示例演示了使用共享首选项。它显示一个带有某些文本字段的屏幕,其值在应用程序关闭后保存,并在再次打开应用程序时取回。
要尝试此示例,您需要按照以下步骤开发应用程序后在实际设备上运行它 −
Steps |
Description |
1 |
你将使用 Android Studio 在包 com.example.sairamkrishna.myapplication 下创建 Android 应用程序。 |
2 |
修改 src/MainActivity.java 文件以添加进度代码以显示旋转进度对话框。 |
3 |
修改 res/layout/activity_main.xml 文件以添加相应的 XML 代码。 |
4 |
运行该应用程序,选择一个正在运行的安卓设备,并在该设备上安装应用程序并验证结果。 |
以下是修改后的内容 MainActivity.java.
package com.example.sairamkrishna.myapplication;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
EditText ed1,ed2,ed3;
Button b1;
public static final String MyPREFERENCES = "MyPrefs" ;
public static final String Name = "nameKey";
public static final String Phone = "phoneKey";
public static final String Email = "emailKey";
SharedPreferences sharedpreferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ed1=(EditText)findViewById(R.id.editText);
ed2=(EditText)findViewById(R.id.editText2);
ed3=(EditText)findViewById(R.id.editText3);
b1=(Button)findViewById(R.id.button);
sharedpreferences = getSharedPreferences(MyPREFERENCES, Context.MODE_PRIVATE);
b1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String n = ed1.getText().toString();
String ph = ed2.getText().toString();
String e = ed3.getText().toString();
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putString(Name, n);
editor.putString(Phone, ph);
editor.putString(Email, e);
editor.commit();
Toast.makeText(MainActivity.this,"Thanks",Toast.LENGTH_LONG).show();
}
});
}
}
以下是修改后的主活动文件 res/layout/activiy_main.xml. 的内容
<?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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Shared Preference "
android:id="@+id/textView"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textSize="35dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tutorials Point"
android:id="@+id/textView2"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:textSize="35dp"
android:textColor="#ff16ff01" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_below="@+id/textView2"
android:layout_marginTop="67dp"
android:hint="Name"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText2"
android:layout_below="@+id/editText"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:hint="Pass" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText3"
android:layout_below="@+id/editText2"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:hint="Email" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save"
android:id="@+id/button"
android:layout_below="@+id/editText3"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp" />
</RelativeLayout>
以下是修改后的文件内容 res/values/strings.xml.
<resources>
<string name="app_name">My Application</string>
</resources>
以下是默认文件内容 AndroidManifest.xml.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sairamkrishna.myapplication" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
让我们尝试运行你的应用程序。我假设你已将你的实际 Android 移动设备与你的计算机连接。要从 Android Studio 运行应用程序,请打开一个项目活动文件,然后从工具栏中单击“运行”图标。在启动应用程序之前,Android Studio 将显示以下窗口,用于选择希望在其中运行 Android 应用程序的选项。
选择你的移动设备作为选项,然后检查你的移动设备,它将显示以下屏幕 −
现在,只需在字段中输入一些文本。例如,我输入了一些随机名称和其他信息,然后单击“保存”按钮。
现在,当你按下保存按钮后,文本将保存在共享首选项中。现在,请按后退按钮并退出应用程序。现在再次打开它,你将看到你已在应用程序中写回的所有文本。