关于SharedPreferences和Editor
程序代码:
public void setNotificationIcon(int iconId) { Editor editor = sharedPrefs.edit(); editor.putInt(Constants.NOTIFICATION_ICON, iconId); (); }
怎么理解每一行代码?
public void setNotificationIcon(int iconId) { Editor editor = sharedPrefs.edit(); editor.putInt(Constants.NOTIFICATION_ICON, iconId); (); }