@Override
 protected void onResume() {
   // TODO Auto-generated method stub
   super.onResume();
   // 设置头像
   if (NApplication.ImgheadBitmap != null) {
     ivHead.setImageBitmap(NApplication.ImgheadBitmap);
   }
   // 上传头像
   if (NApplication.headBitmap != null) {
     dialog = ProgressDialog.show(UserInfoActivity.this, "提示", "正在加载中");
     savePicture(NApplication.headBitmap);
   }
   Intent intent = getIntent();
   IC = intent.getStringExtra("IC");
   name = intent.getStringExtra("name");
   Sex = intent.getStringExtra("Sex");
   if (IC != null) {
     tvNameContext.setText(name);
     tvIdContext.setText(IC);
     tvTelContext.setText(phone);
     tvSex.setText(Sex);
     IC = null;
   }
 }