如何清除sharedPreferences中的一个特定值

Kat*_*lon 0 android sharedpreferences

我知道如何清除整个sharedPreference文件.但是,如果我只想清除一个特定条目,例如"first_name"?我认为必须有一个更好的方法

mContext.getSharedPreferences(TAG, Context.MODE_PRIVATE).edit().putString(FIRST_NAME, null).apply();
Run Code Online (Sandbox Code Playgroud)

我错了吗?

小智 5

mContext.getSharedPreferences(TAG, Context.MODE_PRIVATE).edit().remove(yourKey).commit();
Run Code Online (Sandbox Code Playgroud)