【詳解卡新福利】寫作批改懸賞券,將於 2024/09/30 23:59:59 過期,還沒使用或領取,趕快前往領取並使用吧! 前往查看

行動裝置程式開發 -Android程式設計題庫下載題庫

上一題
33. 在程式中 SharedPreferences sp = getSharedPreferences("T", 0); 下列何者可以寫入"Hello"?
(A) sp.edit().putString("K","Hello").commit();
(B) sp.putString("K","Hello").commit();
(C) sp.edit().putString("K","Hello").submit();
(D) sp.putString("K","Hello").apply();


答案:登入後觀看
難度: 困難

10
 【站僕】摩檸Morning:有沒有達人來解釋一下?
倒數 2天 ,已有 1 則答案
Wen 小一下 (2023/11/24):

A) 正確。使用 sp.edit() 取得 SharedPreferences.Editor,然後使用 putString 方法設定鍵值對,最後使用 commit 提交變更。

0個讚
檢舉


33. 在程式中 SharedPreferences sp = getShare..-阿摩線上測驗