安卓开发之使用SharedPreferences保存键值对数据
【摘要】 使用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
- 获取共享偏好设置(Shared Preferences)的句柄(handle) 写入
- Shared Preferences
- 从共享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)