91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

博客| 吴江市| 钟山县| 黄石市| 宁波市| 涿鹿县| 油尖旺区| 花莲市| 剑阁县| 广元市| 西乌珠穆沁旗| 西林县| 徐汇区| 蓬溪县| 辽中县| 蕲春县| 崇文区| 南召县| 靖边县| 灵石县| 泌阳县| 寿光市| 兴化市| 呼玛县| 滨州市| 阿拉善盟| 长春市| 新余市| 黑河市| 宁海县| 舟山市| 万全县| 开阳县| 涪陵区| 响水县| 木兰县| 久治县| 隆安县| 阜平县| 怀集县| 拜泉县|