温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

SharedPreferences怎么在Android中使用

发布时间:2021-03-30 16:18:27 来源:亿速云 阅读:113 作者:Leah 栏目:移动开发

这篇文章给大家介绍SharedPreferences怎么在Android中使用,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

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>

关于SharedPreferences怎么在Android中使用就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI