中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android學習之SharedPerference存儲詳解

發布時間:2020-08-20 20:52:07 來源:腳本之家 閱讀:109 作者:天秤心已隨風去 欄目:移動開發

SharedPerference不同同于文件存儲,它是使用鍵值的方式來存儲數據,對于保存的每一條數據都會給一個鍵值,這樣在讀取數據時直接通過鍵值取出相應數據。amdroid提供了三個方法來獲取實例:

1.Context類中的getSharePreferences()方法

它接收兩個參數,第一個是文件名;第二個是操作模式,目前只有MODE_PRIVATE可選,這是默認的操作模式,表示只有當前的應用可以對文件進行操作。

2.Activity類中的getPreference()方法

它只接收一個操作模式參數,因為使用這個方法會自動將類名SharedPreference作為文件名。

3.PreferenceManager類中的getDefaultSharedPreference()方法

主要由三步來實現:

  (1)調用SharedPreferences對象的edit()方法來獲取一個SharedPreferences.Editor對象。
  (2)向SharedPreferences.Editor對象中添加數據,比如添加一個布爾型數據就使用putBoolean()方法,依次論推。
  (3)調用apply()方法將添加的數據提交,從而完成數據操作。`

使用案例

MainActivity:

package com.example.sharedpreferences;

import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity implements View.OnClickListener{

  private Button button;
  private Button restore_btn;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    button = (Button)findViewById(R.id.save_data);
    button.setOnClickListener(this);
    restore_btn = (Button)findViewById(R.id.restore_data);
    restore_btn.setOnClickListener(this);
  }

  @Override
  public void onClick(View view) {
    switch (view.getId()){
      case R.id.save_data:
        saveData();
        Toast.makeText(MainActivity.this,"保存成功!",Toast.LENGTH_SHORT).show();
        break;
      case R.id.restore_data:
        restorData();
        Toast.makeText(MainActivity.this,"恢復成功",Toast.LENGTH_SHORT).show();
        break;
      default:
        break;
    }
  }
  public void saveData(){
    SharedPreferences.Editor editor = getSharedPreferences("data",MODE_PRIVATE).edit();
    editor.putString("name","Tom");
    editor.putInt("age",18);
    editor.putBoolean("married",false);
    editor.apply();
  }
  public void restorData(){
    SharedPreferences preferences = getSharedPreferences("data",MODE_PRIVATE);
    String name = preferences.getString("name","");
    int age = preferences.getInt("age",0);
    boolean married = preferences.getBoolean("marred",false);
    Log.d("主活動: ","獲取到名字: "+name);
    Log.d("主活動: ","獲取到年齡: "+age);
    Log.d("主活動: ","獲取到婚配: "+married);
  }
}

布局文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
  tools:context="com.example.sharedpreferences.MainActivity">

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
    <Button
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:id="@+id/save_data"
      android:text="保存數據"/>
    <Button
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:id="@+id/restore_data"
      android:text="恢復數據"/>
  </LinearLayout>

</android.support.constraint.ConstraintLayout>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

辽阳市| 安新县| 贡嘎县| 弥渡县| 巴南区| 汾西县| 临西县| 蕉岭县| 根河市| 景德镇市| 东丰县| 景谷| 饶河县| 远安县| 罗江县| 武威市| 五峰| 宁陕县| 包头市| 沙湾县| 天津市| 读书| 台中县| 元朗区| 八宿县| 青川县| 沛县| 和平区| 慈利县| 青田县| 荃湾区| 英山县| 新绛县| 宜章县| 香河县| 惠东县| 彩票| 余干县| 眉山市| 霍州市| 长泰县|