Android中SharedPreferences简单使用实例

 更新时间:2021年10月26日 10:25:14   作者:JustingWang_1  
这篇文章主要介绍了Android中SharedPreferences简单使用案例,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了SharedPreferences简单使用案例,供大家参考,具体内容如下

MainActivity:

public class SharedPreferencesTestActivity extends Activity implements View.OnClickListener{
  private EditText editText;
  private TextView textView;
  private Button write;
  private Button read;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_shared_preferences_test);
    initView();

    write.setOnClickListener(this);
    read.setOnClickListener(this);
  }

  private void initView() {
    editText=(EditText)findViewById(R.id.Edit_Test);
    textView=(TextView)findViewById(R.id.Text_Test);
    write=(Button)findViewById(R.id.write);
    read=(Button)findViewById(R.id.read);
  }

  @Override
  public void onClick(View v) {
    switch (v.getId()){
      case R.id.write:
        String some=editText.getText().toString();
        SharedPreferences pref = SharedPreferencesTestActivity.this.getSharedPreferences("data",MODE_PRIVATE);
        SharedPreferences.Editor editor = pref.edit();
        editor.putString("Content",some);
        editor.commit();
        Toast.makeText(SharedPreferencesTestActivity.this, "写入成功" , Toast.LENGTH_LONG).show();
        editText.setText("");
        break;
      case R.id.read:
        SharedPreferences pre = getSharedPreferences("data",MODE_PRIVATE);
        String name = pre.getString("Content","");
        textView.setText(name);
        Toast.makeText(SharedPreferencesTestActivity.this, "读取成功" , Toast.LENGTH_LONG).show();
        break;

    }
  }
}

MainActivity.xml

<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="com.fae.mobile.testActivity.SharedPreferencesTestActivity">
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <EditText

      android:textColor="@color/red"
      android:background="@null"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/Edit_Test"
      android:layout_weight="1"
      />
    <TextView
      android:textColor="@color/blue"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/Text_Test"
      android:layout_weight="1"/>
  </LinearLayout>
  <Button
    android:layout_marginTop="25dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/read"
    android:text="读"/>
  <Button
    android:layout_marginTop="25dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/write"
    android:text="写"/>

</LinearLayout>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android 二维码扫描和生成二维码功能

    Android 二维码扫描和生成二维码功能

    二维码,我们也称作QRCode,QR表示quick response即快速响应,在很多App中我们都能见到二维码的身影,最常见的莫过于微信了。下面通过本文给大家讲解Android 二维码扫描和生成二维码功能,需要的朋友参考下吧
    2017-12-12
  • Android点击事件派发机制源码分析

    Android点击事件派发机制源码分析

    这篇文章主要为大家详细介绍了Android点击事件派发机制源码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-08-08
  • android 应用退出时不播放动画的解决方法

    android 应用退出时不播放动画的解决方法

    在Android应用中,默认情况下,当用户点击返回按钮退出应用时,系统会为应用添加一个默认的退出动画效果,本文将介绍如何在Android应用中禁止退出动画的播放,感兴趣的朋友一起看看吧
    2024-05-05
  • Android基于HttpUrlConnection类的文件下载实例代码

    Android基于HttpUrlConnection类的文件下载实例代码

    本文通过实例代码给大家介绍了Android基于HttpUrlConnection类的文件下载功能,非常不错,具有参考借鉴价值,需要的的朋友参考下吧
    2017-09-09
  • Kotlin中使用Dagger2可能遇到的坑解决

    Kotlin中使用Dagger2可能遇到的坑解决

    在Android上创建去耦以及容易测试代码的几乎每位迟早都要诉诸Dagger,在Kotlin中设置Dagger有一些不同,所以下面这篇文章主要给大家介绍了关于Kotlin中使用Dagger2可能遇到的坑的解决方法,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧。
    2017-11-11
  • Android仿高德首页三段式滑动效果的示例代码

    Android仿高德首页三段式滑动效果的示例代码

    很多app都会使用三段式滑动,比如说高德的首页和某宝等物流信息都是使用的三段式滑动方式。本文将介绍如何实现这一效果,感兴趣的可以学习一下
    2022-01-01
  • Android9.0上针对Toast的特殊处理图文详解

    Android9.0上针对Toast的特殊处理图文详解

    这篇文章主要给大家介绍了关于Android9.0上针对Toast的特殊处理的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-09-09
  • Android开发中画廊视图Gallery的两种使用方法分析

    Android开发中画廊视图Gallery的两种使用方法分析

    这篇文章主要介绍了Android开发中画廊视图Gallery的两种使用方法,结合实例形式分析了Android画廊视图Gallery的简单布局与功能实现相关操作技巧,需要的朋友可以参考下
    2018-01-01
  • Android自定义实现顶部粘性下拉刷新效果

    Android自定义实现顶部粘性下拉刷新效果

    这篇文章主要为大家详细介绍了Android自定义实现顶部粘性下拉刷新效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10
  • Android MediaPlayer音频播放器封装示例浅析

    Android MediaPlayer音频播放器封装示例浅析

    Android提供了许多方法来控制播放的音频/视频文件和流。其中该方法是通过一类称为MediaPlayer。Android是提供MediaPlayer类访问内置的媒体播放器的服务,如播放音频,视频等为了使用MediaPlayer,我们要调用这个类的静态create()方法
    2023-04-04

最新评论