SharedPreferences資料儲存

2022-07-26 13:39:08 字數 1368 閱讀 2120

1

<?xml version="1.0" encoding="utf-8"?>

23 android:orientation="vertical"

4 android:layout_width="fill_parent"

5 android:layout_height="fill_parent"

6 >

78 android:id="@+id/textview01"

9 android:layout_width="fill_parent"

10 android:layout_height="wrap_content"

11 android:text="@string/hello"

12 />

13

1

import android.content.sharedpreferences;

3import android.os.bundle;

4import android.view.keyevent;

5import android.widget.textview;67

public

class testsharedpreferencesactivity extends activity

8 32

else

33

36 }

3738 @override

39public

boolean onkeydown(int keycode, keyevent event)

40

52return

true;

53 }

5455 @override

56public

boolean onkeyup(int keycode, keyevent event)

57

76this.finish();

77return

true;

78 }

79return

super.onkeyup(keycode, event);

80 }

81 }

每安裝乙個應用程式時,在/data/data目錄下都會產生乙個資料夾,如果這個應用程式中使用了preferences,那麼便會在該資料夾下產生乙個shared_prefs資料夾,其中就是我們儲存的資料。

<?xml version="1.0" encoding="utf-8" standalone="yes" ?> 

-

sharedpreferences資料儲存

例項134 使用sharedpreferences儲存使用者輸入的使用者名稱和密碼,並在第二個activity中顯示 sharedpreferences 類供開發人員儲存和獲取基本資料型別的鍵值對,該類主要用於基本型別,如booleans,floats,ints,longs,strings。在應用程...

sharedpreferences如何儲存物件

昨天做了乙個搜尋歷史的功能,然後根據搜尋的歷史可以調回到上乙個頁面,這裡涉及到乙個用sharedpreferences儲存物件的問題,sharedpreferences是不能夠直接儲存物件的,我們需要將物件序列化成乙個字串進行儲存。例如 playlist這樣乙個物件 public static vo...

SharedPreferences 資料持久化

sharedpreferences 是乙個輕量級的資料儲存方式,它是android資料持久化最簡單的一種,是以xml檔案儲存鍵值對資料,可以儲存一些簡單的配置資訊,例如登入 因為sharedpreferences本身是乙個介面,程式無法直接建立sharedpreferences的例項。使用 publ...