关于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);
();
}
2013-06-08 19:10
2013-06-20 12:29