@Override protected void onSave(Bundle outState) { super.onSave(outState); }
/** * Last chance at the view before it is detached. You can save state with hack, (restore it the * same way by reading the field). objects saved with be "parceled" by gson. Example: * * <p>((ProfileEditView)Path.get(view.getContext())).somePublicField = "Something you want to * save" */ @Override public void dropView(ProfileEditView view) { super.dropView(view); ButterKnife.unbind(this); }