使用共享引數儲存資料

2021-07-11 05:27:17 字數 632 閱讀 5182

1、首先得到介面的資料:

string key=etkey.gettext().tostring().trim();

string partner=etpartner.gettext().tostring().trim();

string theatnerid=ettheatreid.gettext().tostring().trim();

2、下來是設定儲存的路徑:

sharedpreferences sp=this.getsharedpreferences("set",context.mode_private);

editor editor=sp.edit();

//儲存資料

editor.putstring("test1",key );

editor.putstring("test2",partner );

editor.putstring("test3", theatnerid);

//提交

editor.commit();

toast.maketext(this, "引數已儲存", 0).show();

這樣已經儲存了,其他的activity要用的時候拿出來就行了。

使用共享引數儲存資料還是很方便的,不過不太常用。

Revit API共享引數的使用

共享引數相當於為某一類別元素增加乙個額外的引數。需要讀取值的時候,就當作普通引數值來讀。這裡僅僅把讀取共享引數檔案,然後繫結到某一類別的 貼出來。api建立組,建立引數具體 詳見原始碼。transaction transactionmode.manual regeneration regenerat...

Revit API共享引數的使用

共享引數相當於為某一類別元素增加乙個額外的引數。需要讀取值的時候,就當作普通引數值來讀。這裡僅僅把讀取共享引數檔案,然後繫結到某一類別的 貼出來。api建立組,建立引數具體 詳見原始碼。transaction transactionmode.manual regeneration regenerat...

共享引數sharedpreferences

sharedprefences是乙個輕量級的儲存類,特別適合於儲存軟體配置引數 使用sharedprefences儲存資料,其背後是用xml 存放資料,檔案存放在 data data shared prefs目錄下 api中sharedprefences的說明,是儲存一種鍵值對應的資料 api中提供...