Android中SharedPerforences的簡單使用示例 --Android基礎

来源:https://www.cnblogs.com/qikeyishu/archive/2018/05/30/9110023.html
-Advertisement-
Play Games

SharedPreferences是Android平臺上一個輕量級的存儲類,用來保存應用的一些常用配置,比如Activity狀態,Activity暫停時,將此activity的狀態保存到SharedPereferences中;當Activity重載,系統回調方法onSaveInstanceState ...


SharedPreferencesAndroid平臺上一個輕量級的存儲類,用來保存應用的一些常用配置,比如Activity狀態,Activity暫停時,將此activity的狀態保存到SharedPereferences中;當Activity重載,系統回調方法onSaveInstanceState時,再從SharedPreferences中將值取出……。下麵通過一個小小的案例,分享一下我之前做的。

1、最終效果圖

大致就是通過SharedPreferences存儲類創建一個配置文件(這裡是通過按鈕去觸發的),然後向配置文件中寫入配置信息,最後就是讀配置中“鍵”對應的“值”(這裡通過按鈕觸發將讀到的值顯示出來)。還是比較簡單,很容易的。

2、佈局文件

activity_main.xml:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     xmlns:app="http://schemas.android.com/apk/res-auto"
 4     xmlns:tools="http://schemas.android.com/tools"
 5     android:layout_width="match_parent"
 6     android:layout_height="match_parent"
 7     tools:context="thonlon.example.cn.sharedpreferencesdemo.MainActivity">
 8 
 9     <Button
10         android:id="@+id/btn_create"
11         android:layout_width="396dp"
12         android:layout_height="46dp"
13         android:text="@string/btn_create_sp"
14         app:layout_constraintBottom_toBottomOf="parent"
15         app:layout_constraintLeft_toLeftOf="parent"
16         app:layout_constraintRight_toRightOf="parent"
17         app:layout_constraintTop_toTopOf="parent"
18         app:layout_constraintVertical_bias="0.0" />
19 
20     <Button
21         android:id="@+id/btn_getInfo"
22         android:layout_width="396dp"
23         android:layout_height="46dp"
24         android:layout_marginLeft="0dp"
25         android:text="@string/btn_getInfo_sp"
26         app:layout_constraintBottom_toBottomOf="parent"
27         app:layout_constraintLeft_toLeftOf="parent"
28         app:layout_constraintRight_toRightOf="parent"
29         app:layout_constraintTop_toTopOf="parent"
30         app:layout_constraintVertical_bias="0.1" />
31 
32     <TextView
33         android:id="@+id/textView1"
34         android:layout_width="80dp"
35         android:layout_height="20dp"
36         android:background="@color/colorPrimary"
37         android:text="英文顯示:"
38         android:textAlignment="center"
39         android:textColor="@color/colorWhite"
40         app:layout_constraintBottom_toBottomOf="parent"
41         app:layout_constraintHorizontal_bias="0.0"
42         app:layout_constraintLeft_toLeftOf="parent"
43         app:layout_constraintRight_toRightOf="parent"
44         app:layout_constraintTop_toTopOf="parent"
45         app:layout_constraintVertical_bias="0.465" />
46 
47     <TextView
48         android:id="@+id/textView2"
49         android:layout_width="80dp"
50         android:layout_height="20dp"
51         android:background="@color/colorPrimary"
52         android:text="中文顯示:"
53         android:textAlignment="center"
54         android:textColor="@color/colorWhite"
55         app:layout_constraintBottom_toBottomOf="parent"
56         app:layout_constraintHorizontal_bias="0"
57         app:layout_constraintLeft_toLeftOf="parent"
58         app:layout_constraintRight_toRightOf="parent"
59         app:layout_constraintTop_toTopOf="parent"
60         app:layout_constraintVertical_bias="0.205" />
61 
62     <TextView
63         android:id="@+id/tv1"
64         android:layout_width="wrap_content"
65         android:layout_height="wrap_content"
66         app:layout_constraintBottom_toBottomOf="parent"
67         app:layout_constraintHorizontal_bias="0.0"
68         app:layout_constraintLeft_toLeftOf="parent"
69         app:layout_constraintRight_toRightOf="parent"
70         app:layout_constraintTop_toTopOf="parent"
71         app:layout_constraintVertical_bias="0.244" />
72 
73     <TextView
74         android:id="@+id/tv2"
75         android:layout_width="wrap_content"
76         android:layout_height="wrap_content"
77         app:layout_constraintBottom_toBottomOf="parent"
78         app:layout_constraintHorizontal_bias="0.0"
79         app:layout_constraintLeft_toLeftOf="parent"
80         app:layout_constraintRight_toRightOf="parent"
81         app:layout_constraintTop_toTopOf="parent"
82         app:layout_constraintVertical_bias="0.53" />
83 </android.support.constraint.ConstraintLayout>

3、activity文件

MainActivity.java

 1 package thonlon.example.cn.sharedpreferencesdemo;
 2 
 3 import android.content.SharedPreferences;
 4 import android.support.v7.app.AppCompatActivity;
 5 import android.os.Bundle;
 6 import android.view.View;
 7 import android.widget.Button;
 8 import android.widget.TextView;
 9 import android.widget.Toast;
10 
11 public class MainActivity extends AppCompatActivity {
12 
13     private SharedPreferences sharedPreferences;
14     private Button btn_create, btn_getInfo;
15     private TextView textView1, textView2;
16 
17     @Override
18     protected void onCreate(Bundle savedInstanceState) {
19         super.onCreate(savedInstanceState);
20         setContentView(R.layout.activity_main);
21         btn_create = (Button) findViewById(R.id.btn_create);
22         btn_getInfo = (Button) findViewById(R.id.btn_getInfo);
23         textView1 = (TextView) findViewById(R.id.tv1);
24         textView2 = (TextView) findViewById(R.id.tv2);
25 //        設置配置文件的名稱和配置文件的被訪問許可權
26         sharedPreferences = getSharedPreferences("config", MODE_ENABLE_WRITE_AHEAD_LOGGING);
27         btn_create.setOnClickListener(new View.OnClickListener() {
28             @Override
29             public void onClick(View view) {
30                 write();
31             }
32 
33             private void write() {
34                 //得到配置編輯器
35                 SharedPreferences.Editor edit = sharedPreferences.edit();
36                 //寫入配置信息到配置文件中
37                 edit.putString("Chinese", "SharedPreferences是Android平臺上一個輕量級的存儲類。");
38                 edit.putString("English", "SharedPreferences is a lightweight storage class on the Android platform to save some of the common configuration of the application.");
39                 //註意以上只是將配置信息寫入了記憶體
40                 edit.commit();//提交記憶體配置信息到本地
41                 Toast.makeText(getApplicationContext(), "成功創建文件", Toast.LENGTH_LONG).show();
42             }
43         });
44         btn_getInfo.setOnClickListener(new View.OnClickListener() {
45             @Override
46             public void onClick(View view) {
47                 read();
48             }
49 
50             private void read() {
51                 String chinese_info = sharedPreferences.getString("Chinese", "");
52                 String english_info = sharedPreferences.getString("English", "");
53                 textView1.setText(chinese_info);
54                 textView2.setText(english_info);
55             }
56         });
57     }
58 }

4、源碼下載

 百度雲下載鏈接:https://pan.baidu.com/s/1PRY5fdlAt5ZSl05NGniWrw 密碼:tpr0


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • CentOS 下 MySQL 5.6 基於 RPM 的下載、安裝、配置 系統: CentOS 7 x86_64 MySQL 版本: 5.6.40 安裝方式: RPM 下載 "下載地址" 操作系統 選擇 Red Hat Enterprise Linux / Oracle Linux 系統版本 選擇 R ...
  • 首先創建 聚集函數: 接著上一個 樣例: 在訂單明細表按 和`season ticket_code order_id`去除重覆並且拼接起來 最後查詢結果截圖: ...
  • 1、redis兩種存儲機制(持久化) Redis的存儲機制分為:Snapshot和AOF 都先將記憶體存儲在記憶體中。 (1)Snapshot當數據累計到一定的閾值,就會觸發dump將數據一次性寫入到數據文件RDB文件。批量數據存儲,寫入頻率低,效率也高。但是安全性小,redis宕機,沒有寫入的數據會造 ...
  • -- 登錄資料庫 mysql -uroot -pmysql; -- 不顯示密碼 mysql -uroot -p -- 退出資料庫quit/exit/ctrl + d -- sql語句最後需要有分號;結尾 -- 顯示資料庫版本 version select version(); -- 顯示時間 now ...
  • 利用over(),將統計信息計算出來,然後直接篩選結果集 1 declare @t table( 2 ProductID int, 3 ProductName varchar(20), 4 ProductType varchar(20), 5 Price int) 6 7 insert @t 8 s ...
  • 系統環境 伺服器系統:Windows Server2012 R2 MongoDB:v3.4.4 可以通過命令:mongo -version 查看版本信息 場景:備份資料庫smp_maint_2,還原到新建的資料庫smp_maint_2_restore中。 MongoDB資料庫備份 1、語法: mon ...
  • NSMutableAttributedString let testAttributes = [NSAttributedStringKey.foregroundColor: UIColor.blue, NSAttributedStringKey.backgroundColor: UIColor.ye ...
  • Swift代理的使用 協議規定了用來實現某一特定功能所必需的方法和屬性。 任意能夠滿足協議要求的類型被稱為遵循(conform)這個協議。 類,結構體或枚舉類型都可以遵循協議,並提供具體實現來完成協議定義的方法和功能。 1、申明代理 // 協議內容 @objc protocol TLSelectVi ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...