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();
詳解 (共 2 筆)
未解鎖
A) 正確。使用 sp.edit() 取...
未解鎖
這是一道關於 Android 開發中 S...