关于SharedPreferences和Editor
sharedPrefs = context.getSharedPreferences(Constants.SHARED_PREFERENCE_NAME, Context.MODE_PRIVATE);//第一个参数是自定义的常量client_preferences,我不知道是什么意思 Editor editor = sharedPrefs.edit(); editor.putInt(Constants.XMPP_PORT,Integer.parseInt(xmppPort));//这句第一个参数也是自定义的常量XMPP_PORT
谁能给我解释一下每一句的意思,谢谢了。