protected void onCreate(Bundle bundle) {
   super.onCreate(bundle);
   setContentView((int) R.layout.member_set_weight_layout);
   this.r = getIntent().getBooleanExtra("FROM_BABY_WEIGHT", false);
   e();
   EventBus.getDefault().register(this);
 }
 protected void onResume() {
   super.onResume();
   h = true;
   this.v = 0;
 }
 protected void onPause() {
   super.onPause();
   h = false;
 }
 protected void onDestroy() {
   super.onDestroy();
   EventBus.getDefault().unregister(this);
 }