@Override
 public void onCreate(Bundle savedInstanceState) {
   OnViewChangedNotifier previousNotifier =
       OnViewChangedNotifier.replaceNotifier(onViewChangedNotifier_);
   init_(savedInstanceState);
   super.onCreate(savedInstanceState);
   OnViewChangedNotifier.replaceNotifier(previousNotifier);
 }
 @Override
 public void setContentView(View view) {
   super.setContentView(view);
   onViewChangedNotifier_.notifyViewChanged(this);
 }
 @Override
 public void setContentView(View view, LayoutParams params) {
   super.setContentView(view, params);
   onViewChangedNotifier_.notifyViewChanged(this);
 }
 @Override
 public void setContentView(int layoutResID) {
   super.setContentView(layoutResID);
   onViewChangedNotifier_.notifyViewChanged(this);
 }