亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

临邑县| 鲜城| 七台河市| 桐庐县| 浮梁县| 桃源县| 大竹县| 新乡县| 洪泽县| 金堂县| 仪征市| 台中县| 石首市| 石泉县| 牙克石市| 新津县| 金沙县| 绥棱县| 吐鲁番市| 高青县| 竹山县| 丰城市| 筠连县| 洛浦县| 城步| 都兰县| 陆良县| 东莞市| 红安县| 常山县| 山西省| 江口县| 如皋市| 伊金霍洛旗| 都匀市| 抚宁县| 旬邑县| 三门峡市| 曲沃县| 永靖县| 禄劝|